function checkData (){
	if (document.forms[0].Last_Name.value.length ==0){
		document.forms[0].Last_Name.focus();
		alert("Please enter your last name.");
		return false;
	}
	if (document.forms[0].Email.value.length ==0){
		document.forms[0].Email.focus();
		alert("Please enter an e-mail address.");
		return false;
	}
	if (document.forms[0].Email.value.length >0){
		i=document.forms[0].Email.value.indexOf("@")
		j=document.forms[0].Email.value.indexOf(".",i)
		k=document.forms[0].Email.value.indexOf(",")
		kk=document.forms[0].Email.value.indexOf(" ")
		jj=document.forms[0].Email.value.lastIndexOf(".")+1
		len=document.forms[0].Email.value.length
		if ((i>0) && (j>(1+1)) && (k==-1) && (kk==-1) && (len-jj >=2) && (len-jj<=3)) {
		} else {
			document.forms[0].Email.focus()
			document.forms[0].Email.select()
			alert("Please enter a valid email address.")
			return false
		}
	}
	if (document.forms[0].Comments.value.length ==0){
		document.forms[0].Comments.focus();
		alert("Please let us know how we may help you.");
		return false;
	}
}