	
function sampleverify()
{
var pname=document.sample.Person_Name.value;
var organization=document.sample.Organization.value;
var email=document.sample.Email.value;


if(pname=='')
{
alert("Enter the Name"); 
document.sample.Person_Name.focus();
return false;
}

if(organization=='')
{
alert("Enter the Organization"); 
document.sample.Organization.focus();
return false;
}

if(document.sample.Address.value=='')
{
alert("Enter the Address");
document.sample.Address.focus();
return false;
}

if(document.sample.Phone.value=='')
{
alert("Enter the Phone");
document.sample.Phone.focus();
return false;
}

if(email=='')
{
alert("Enter the Email"); 
document.sample.Email.focus();
return false;
}
return true;
}



function enquiryverify()
{
var pname=document.enquiry.Person_Name.value;
var cname=document.enquiry.Company_Name.value;
var email=document.enquiry.Email.value;


if(pname=='')
{
alert("Enter the Name"); 
document.enquiry.Person_Name.focus();
return false;
}

if(cname=='')
{
alert("Enter the Company Name"); 
document.enquiry.Company_Name.focus();
return false;
}

if(document.enquiry.Address.value=='')
{
alert("Enter the Address");
document.enquiry.Address.focus();
return false;
}

if(document.enquiry.Correspondence_Address.value=='')
{
alert("Enter the Correspondence Address");
document.enquiry.Correspondence_Address.focus();
return false;
}

if(email=='')
{
alert("Enter the Email"); 
document.enquiry.Email.focus();
return false;
}
return true;
}


