<!-- hide
function GoAlert(P, Str) {
	alert("Please fill out the"+Str);
	P.focus();
	return;
	}

function chksend(form) {
	if(!chkall(form))return;
	form.submit();
	return;
	}


function chkall(form)
{
   if (form.comname.value == "") 
   {  
        GoAlert(form.comname," Company Name ");
        return(false);
   }
   if (form.address.value == "") 
   {
        GoAlert(form.address," Address ");
        return(false);
   }
   if (form.phone.value == "") 
   {
        GoAlert(form.phone," Telephone ");
        return(false);
   }
    if (form.item1.value == "") 
   {
        GoAlert(form.item1," Product ");
        return(false);
   }
  else{
        if (form.ref1.value == "") {
             GoAlert(form.ref1," Product ");
             return(false);
         }
        else {
              if (form.pic1.value == "") {
                    GoAlert(form.pic1," Product ");
                    return(false);
               }
             else{
              if (form.quantity1.value == "") {
                     GoAlert(form.quantity1," Product ");
                     return(false);
              }
             }
        }
  }
  return(true)
}

//-->