<!-- Begin
	
function validate1(f)
{
document.form1.F1.style.background="url(picts/shadeform.gif)";
document.form1.F2.style.background="url(picts/shadeform.gif)";
document.form1.F3.style.background="url(picts/shadeform.gif)";
document.form1.F4.style.background="url(picts/shadeform.gif)";
document.form1.confirm.style.background="url(picts/shadeform.gif)";
document.form1.F5.style.background="url(picts/shadeform.gif)";
document.form1.F8.style.background="url(picts/shadeform.gif)";
var a = document.form1.F4.value;
var b = document.form1.confirm.value;
var today = new Date();
var d = today.getDate();
var m = today.getMonth() + 1;
var y = today.getYear();
if(d<10) d = "0" + d
if(m<10) m = "0" + m
document.form1.F6.value = m+'/'+d+'/'+y;

if(document.form1.F1.value=="")
	{
	document.form1.F1.style.background='#FFFF99';
	alert ("Please enter your name.")
	document.form1.F1.focus()
	return false;
	}
if(document.form1.F2.value=="")
	{
	document.form1.F2.style.background='#FFFF99';
	alert ("Please enter your company name.")
	document.form1.F2.focus()
	return false;
	}
if(document.form1.F3.value=="")
	{
	document.form1.F3.style.background='#FFFF99';
	alert ("Please enter your phone number")
	document.form1.F3.focus()
	return false;
	}
if(document.form1.F4.value=="")
	{
	document.form1.F4.style.background='#FFFF99';
	alert ("Please enter your email address.")
	document.form1.F4.focus()
	return false;
	}
if (document.form1.F4.value.indexOf('@')==-1 || document.form1.F4.value.indexOf('@')==0 || document.form1.F4.value.indexOf('@')==document.form1.F4.length)
	{
	document.form1.F4.style.background='#FFFF99';
	alert("Invalid E-mail ID")
	document.form1.F4.focus()
	return false
	}
if (document.form1.F4.value.indexOf('.')==-1 || document.form1.F4.value.indexOf('.')==0 || document.form1.F4.value.indexOf('.')==document.form1.F4.length)
	{
	document.form1.F4.style.background='#FFFF99';
	alert("Invalid E-mail ID")
	document.form1.F4.focus()
	return false
	}
if(a != b)
	{
	document.form1.F4.style.background='#FFFF99';
	document.form1.confirm.style.background='#FFFF99';
	alert ("Your email address doesn't match.")
	document.form1.F4.focus()
	return false;
	}
if(document.form1.F5.selectedIndex=="0")
	{
	document.form1.F5.style.background='#FFFF99';
	alert ("Please select an option.")
	document.form1.F5.focus()
	return false;
	}
if(document.form1.F8.selectedIndex=="0")
	{
	document.form1.F5.style.background='#FFFF99';
	alert ("Please select an option.")
	document.form1.F5.focus()
	return false;
	}
}


//  End -->