<!-- begin script
function isBlank(str) {
 if ( str.value == "" || str.value == null ) {
   return false;
 }
 return true;
}

function checkEmail(jk) {
 if ( jk.value.indexOf("@") + "" != "-1" &&
      jk.value.indexOf(".")+ "" != "-1" &&
      jk.value != "" ) {
   return true;
 }
  else {
   return false;
  }
}
function checkForm(myform) {
 if (isBlank(myform.lname)==false) {
  alert("Ooops! You forgot to enter your Last Name !");
  myform.lname.focus();
  return false;
 }
 if (isBlank(myform.fname)==false) {
  alert("Ooops! Could you please tell us your First Name ?");
  myform.fname.focus();
  return false;
 }
 if (isBlank(myform.street)==false) {
  alert("May we ask you for your street address ?");
  myform.street.focus();
  return false;
 }
 if (isBlank(myform.city)==false) {
  alert("Could you kindly tell us which City you live in ?");
  myform.city.focus();
  return false;
 }
 if (isBlank(myform.state)==false) {
  alert("I am sorry... I think you forgot to tell us your State");
  myform.state.focus();
  return false;
 }
 if (isBlank(myform.zip)==false) {
  alert("Also, Please enter your Zip");
  myform.zip.focus();
  return false;
 }
 if (isBlank(myform.hphone)==false) {
  alert("May we have your contact Home Phone Number ?");
  myform.hphone.focus();
  return false;
 }
 if (isBlank(myform.email)==false) {
  alert("May we ask your for your Email Address ?");
  myform.email.focus();
  return false;
 }
 if ( checkEmail(myform.email)==false) {
   alert("Ooops! Your email address does not look right...Can you please check and re-enter ?");
   myform.email.focus();
   return false;
 }

//if ( myform.Committee.value=="" ) {
//	alert("I am sorry...I do not know what Committees you have selected !")
//	return false;
//}
 return true;
}
// end script -->

