<!--
function noEntry(){
  mt=document.ridematch.EMAIL.value;
  if 
	((mt.indexOf("@") == -1) ||
	(mt.indexOf(".") == -1) ||
	(mt.length<7))
	{
	alert("You must enter a valid Email address")
	return false
	}
  mt=document.ridematch.PASSWORD.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Password field requires an entry.");
   document.ridematch.PASSWORD.value="";
	return false;
  }
  mt=document.ridematch.FIRST.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The First Name field requires an entry.");
   document.ridematch.FIRST.value="";
	return false;
  }
  mt=document.ridematch.LAST.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Last Name field requires an entry.");
   document.ridematch.LAST.value="";
	return false;
  }
  mt=document.ridematch.H_ADDR.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Street Address field requires an entry.");
   document.ridematch.H_ADDR.value="";
	return false;
  }
  mt=document.ridematch.H_CITY.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The City field requires an entry.");
   document.ridematch.H_CITY.value="";
	return false;
  }
  mt=document.ridematch.H_STATE.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The State field requires an entry.");
   document.ridematch.H_STATE.value="";
	return false;
  }
  mt=document.ridematch.H_ZIPCD.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Zip Code field requires an entry.");
   document.ridematch.H_ZIPCD.value="";
	return false;
  }
  mt=document.ridematch.H_XSTREET.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Home Nearest Major Intersection field requires an entry.");
   document.ridematch.H_XSTREET.value="";
	return false;
  }
  mt=document.ridematch.H_XSTREET2.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Home Nearest Major Intersection 2nd field requires an entry.");
   document.ridematch.H_XSTREET2.value="";
	return false;
  }
  mt=document.ridematch.H_AREACD.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Home Area Code field requires an entry.");
   document.ridematch.H_AREACD.value="";
	return false;
  }
  mt=document.ridematch.H_PHONE.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Home Phone field requires an entry.");
   document.ridematch.H_PHONE.value="";
	return false;
  }
  mt=document.ridematch.W_NAME.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Employer field requires an entry.");
   document.ridematch.W_NAME.value="";
	return false;
  }
  mt=document.ridematch.W_ADDR.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Street Address field requires an entry.");
   document.ridematch.W_ADDR.value="";
	return false;
  }
  mt=document.ridematch.W_CITY.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work City field requires an entry.");
   document.ridematch.W_CITY.value="";
	return false;
  }
  mt=document.ridematch.W_STATE.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work State field requires an entry.");
   document.ridematch.W_STATE.value="";
	return false;
  }
  mt=document.ridematch.W_ZIPCD.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Zip Code field requires an entry.");
   document.ridematch.W_ZIPCD.value="";
	return false;
  }
  mt=document.ridematch.W_XSTREET.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Nearest Major Intersection field requires an entry.");
   document.ridematch.W_XSTREET.value="";
	return false;
  }
  mt=document.ridematch.W_XSTREET2.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Nearest Major Intersection 2nd field requires an entry.");
   document.ridematch.W_XSTREET2.value="";
	return false;
  }
  mt=document.ridematch.W_AREACD.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Area Code field requires an entry.");
   document.ridematch.W_AREACD.value="";
	return false;
  }
  mt=document.ridematch.W_PHONE.value;
  if ((mt.length<1)||(mt.substring(0,6)=="******")){
   alert("The Work Phone field requires an entry.");
   document.ridematch.W_PHONE.value="";
	return false;
  }
  mt=document.ridematch.SOURCE_CD.selectedIndex;
  if (!mt){
   alert("The How did you hear about us field requires an entry.");
	return false;
  }

  	itemchecked = false;
	for(var j = 0 ; j < 2 ; ++j)
	{
		if(document.ridematch.RG_TESTIM[j].checked) 
		{
			itemchecked = true;
			break;
		}
	}
	if(!itemchecked) 
	{ 
		alert("The Testimonial field requires an entry.");
		return false;
	}
	else 
		return true;

}
-->