// JavaScript Document
function CheckForm()
{
if (window.document.qform.FullName.value=="")
	{
	alert("Please enter your Full Name!")
	window.document.qform.FullName.focus();
	return false;	
	}
if (window.document.qform.Address.value=="")
	{
	alert("Please enter your Address!")
	window.document.qform.Address.focus();
	return false;	
	}
if (window.document.qform.City.value=="")
	{
	alert("Please enter your City!")
	window.document.qform.City.focus();
	return false;	
	}
if (window.document.qform.State.value=="")
	{
	alert("Please enter your State or Province!")
	window.document.qform.State.focus();
	return false;	
	}
if (window.document.qform.Country.value=="")
	{
	alert("Please enter your Country!")
	window.document.qform.Country.focus();
	return false;	
	}			
if (window.document.qform.eMail.value=="")
	{
	alert("Please enter your email! you@yourdomain.com")
	window.document.qform.eMail.focus();
	return false;	
	}	
else
{ if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(qform.eMail.value))
{ return (true) }
alert("Please Enter a Valid E-mail Address! you@yourdomain.com")
document.qform.eMail.focus();
return (false)
}	
}