<!-- hide
function clecart() {
	document.location = "cleinquiry.asp"
	return;
	}

function GoAlert(P, Str) {
	alert("Please fill out the"+Str);
	P.focus();
	return;
	}

function Send(form) {
	if(!chkall(form))return;
	form.submit();
	return;
	}


function chkall(form)
{
   if (form.comname.value == "") 
   {  
        GoAlert(form.comname," Company Name ");
        return(false);
   }
    if (form.person.value == "") 
   {  
       GoAlert(form.person," Contact Person ");
        return(false);
   }
     var Ctr=form.email;
     var Len=Ctr.value.length;
     var xx = Ctr.value;
     for(var i=1; i<Len; i++) {
          if(xx.substring(i, i+1) == '@') var AtS=i;
          if(xx.substring(i, i+1) == '.') var Point=i;
          }
     AtS = parseInt(AtS);
     Point=parseInt(Point);
     if(xx.substring(AtS, AtS+1) != '@' && xx.substring(Point, Point+1) != '.') {
          GoAlert(Ctr, " Email ");
          return(false);
          }
     if(AtS > Point || (AtS - Point)==1 || xx.substring(AtS+1,AtS+2) == " " || xx.substring(AtS+1,AtS+2) == "" || 
          xx.substring(Point+1, Point+2)==" " || xx.substring(Point+1, Point+2) == "") {

          GoAlert(Ctr, "Please fill out the email box.");
          return(false);
          }
 if (form.fob.checked == false && form.cf.checked == false)
   {  
        GoAlert(form.fob," Condition ");
        return(false);
   }
 if (form.cf.checked == true){
	if (form.cfvalue.value == "") 
   {  
        GoAlert(form.cfvalue," C&F Location ");
        return(false);
   }}
   
   
   
return(true);
}




//-->
