<!--
	function validate()

	{ if (document.CustInfo.fname.value == "") 
	     {alert ("What is your first name ?"); CustInfo.fname.focus();
              return false ; }
 
        else

	if (document.CustInfo.lname.value == "")
	     {alert ("Your last name is needed also !"); CustInfo.lname.focus();
              return false ; }

        else

	if (document.CustInfo.tphone.value == "")
	     {alert ("What telephone number can you be reached at ?"); CustInfo.tphone.focus();
              return false ; }

        else

	if ((document.CustInfo.tphone.value.length < 10 ) || (document.CustInfo.tphone.value.length > 14 ))
	     {alert ("You did NOT give us a valid telephone number! \n \n Try again with (area code) 123-4567 format!"); 
              CustInfo.tphone.focus() ; return false ; }

	else

	if (document.CustInfo.email.value.length < 5 ) 
	     {alert ("Please give us your email address !"); CustInfo.email.focus() ;
              return false ; }

	else

 	if ((document.CustInfo.email.value.indexOf("@",0) == -1) || (document.CustInfo.email.value.indexOf(".",0) == -1) 
             && (document.CustInfo.email.value !== ""))
	     {alert ("You did NOT give us a valid email address! \n \n Try again!"); CustInfo.email.focus() ; 
              return false ; }

	else

        if (document.CustInfo.contact_subj.options[0].selected == true )
             {alert ("What is the subject of your contact? \n \n Make a selection from the drop-down box.") ; 
              CustInfo.contact_subj.focus() ; return false ; }

	else

        if (document.CustInfo.comments.value == "")
	     {alert ("What are your comments/questions?"); CustInfo.comments.focus() ; 
              return false ; }


	}

//-->
