
<!--
function go()
{
   if (document.form1.Lname.value.length < 1){
      alert("Last Name Required!")
      document.form1.Lname.focus()
   }
   else{
   if (document.form1.Phone.value.length < 5){
    	alert("Phone Required!")
	    document.form1.Phone.focus()
		}
   else{
   		if (document.form1.Email.value.length < 3){
    	alert("Email Required!")
	    document.form1.Email.focus()
		}
   		else{
     document.form1.submit();
	}
	}
	}
}


function islength(obj,val){
   if (obj.value.length<val) alert('Enter required information for '+obj.name+'!')
}

function ISemail(val){
   var str=new String(val);
   return (str.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1);
}



function isemail(field,val)
{
if (!(val.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1) && val.length > 0){
    alert("Incorrect Email Address!")
}
}


//-->
