// Credit: Website Abstraction (http://wsabstract.com)
// Courtesy SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)
function checkrequired(which){
//alert("Because we are concerned about the security of your financial data, the data you are about to submit MUST BE PRINTED AND FAXED before you will be considered to be Registered for the course. The following page has been generated and formatted for easy printing and faxing. The fax number to send the form to will be listed at the top of the form. Thank you!")
var pass=true
if (document.images){
for (i=0;i<which.length;i++){
var tempobj=which.elements[i]
if (tempobj.name.substring(0,8)=="required"){
if (((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1)){
pass=false
break
}
}
}
}
if (!pass){
alert("One or more of the required elements are not completed. Please complete them, then submit again!")
return false
}
else
return true
}