<!--
function bf()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

function mark(face,field_color,text_color){
 if (document.documentElement){//if browser is IE5+ or NS6+
	face.style.backgroundColor=field_color;
	face.style.color=text_color;
 }
}



function noEntry() {

var FN = document.myForm.user_name.value;
if ((FN.length<1)||(FN.substring(0,1)=="0")) {
	alert("We need your name to send the information.   ");
	document.myForm.user_name.focus();
	return false;
}

else {


var LN = document.myForm.user_email.value;
if ((LN.length<1)||(LN.substring(0,1)=="0")) {
	alert("We need your e-mail address to send the information. ");
	document.myForm.user_email.focus();
	return false;
}

else {

var TN = document.myForm.user_phone.value;
if ((TN.length<1)||(TN.substring(0,1)=="0")) {
	alert("We need your phone number to be able to contact you if the e-mail fails. ");
	document.myForm.user_phone.focus();
	return false;
}



else { return true; }


}
}

}  //End Function noEntry




//-->