// JavaScript Document

function checkFrm(){
	var args=checkFrm.arguments, error=0;
	 for (i=0; i<(args.length); i++){
		var element = document.getElementById(args[i]);
		if (element.value==''){ error++; }
		//alert ("testing: "+i+" "+element.value);
	 }
	 	if(error>0){
		 alert("Please complete all information");
	 }
	 return error>0?false:true;
	
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function delCheck() {
	if (confirm("Are you sure you want to delete this item?")) {
		return true;
	}
	else {
		return false;
	}
}