// JavaScript Document
function validate(){
	x=document.frmQuote
	company=x.company.value
	name=x.name.value
	phone=x.phone.value
	email=x.email.value
	
	submitOK="True"

if (company.length<1)
{
	alert("Please enter your company name in the form")
	submitOK="False"
}

if (name.length<1)
 {
	alert("Please enter your name in the form")
	submitOK="False"
 }


if (phone.length<5)
{
	alert("Please enter your phone number in the form")
	submitOK="False"
}

if (email.length<1)
{
	alert("Please enter your email in the form")
	submitOK="False"
}




if (submitOK=="False")
 {
 return false
 }
}