
<!--
function checkddemail(toCheck) {
  var i = 0
  var isNum = true;
  for (j = 0; j < toCheck.length; j++) {  if ((toCheck.substring(j,j+1) == "@")) {i++;}  }
  if ( i > 1) { isNum = false; }  return isNum;
}

function testForms(){
  var tmpfrm=document.mailfrm;
	 	 
  if (!tmpfrm.name.value) {alert('Please fill your name');
     tmpfrm.name.focus(); return false;}
        
  if (!tmpfrm.company.value) {alert('Please fill your company name');
     tmpfrm.company.focus(); return false;}
	 
  if (!tmpfrm.Address.value) {alert('Please fill your address');
     tmpfrm.Address.focus(); return false;}
	 
  if (!tmpfrm.City.value) {alert('Please fill your city');
     tmpfrm.City.focus(); return false;}
	 
  if (!tmpfrm.Telephone.value) {alert('Please fill your phone number');
     tmpfrm.Telephone.focus(); return false;}
	 
  if (!tmpfrm.email.value) {alert('Please fill the email address');
     tmpfrm.email.focus(); return false;}
  else{ if (tmpfrm.email.value.indexOf("@")<3){
              alert("Sorry, you may have the wrong email address.");
              tmpfrm.email.focus(); return false;} }
              
  if (!tmpfrm.verify.value) {alert('Please fill the verification number');
     tmpfrm.verify.focus(); return false;}
	 
}
//-->