
// Validation for "Mailing List"
function verifyMLinput(check){
df = document.MailingList;
if (document.images){
for (i=0;i<check.length;i++){
var tempobj=check.elements[i];
var jumpTo = df.elements[i];
if (tempobj.name.substring(0,3)=="req"){
if(((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex=="")){
alert("Please complete ALL required fields (*) and re-submit the form."); 
jumpTo.focus()
return false;
}
}
}
}
}
