<!--//
/*
Enquiry validation form

*/
function enquireval(){
 if (document.enqform.name.value=="") {
  alert("Please enter your Name") 
  return;
 }
if (document.enqform.company.value=="") {
  alert("Please enter your Company Name") 
  return;
 }
if (document.enqform.position.value=="") {
  alert("Please enter your job title or position") 
  return;
 }
if (document.enqform.phone.value=="") {
  alert("Please enter your Contact Phone Number") 
  return;
 }
if (document.enqform.comments.value=="") {
  alert("Please enter your question or comments") 
  return;
 }
 document.enqform.submit(); 

}//end function

//-->