// FOR ENQUIRY FORM
function enquiry_verify()
{
var pname=document.enquiry.pname.value;
var company=document.enquiry.company.value;
var city=document.enquiry.city.value;
var email=document.enquiry.email.value;


if(pname=='')
{
alert("Enter the Name"); 
document.enquiry.pname.focus();
return false;
}

if(company=='')
{
alert("Enter the Company Name"); 
document.enquiry.company.focus();
return false;
}


if(city=='')
{
alert("Enter the City"); 
document.enquiry.city.focus();
return false;
}

if(email=='')
{
alert("Enter the Email"); 
document.enquiry.email.focus();
return false;
}

alert("Thank you for your enquiry – we aim to respond within 24 hours"); 

return true;
}
