// JavaScript Document
function SubmitForm1()
{
	var mName = document.Form1.name.value;
	
	var mEmail =document.Form1.email.value;
	var mFirst=document.Form1.area.value;
	var mSecond=document.Form1.first3.value;
	var mThird=document.Form1.last4.value;
	
	mName = trim(mName);
	
	mEmail=trim(mEmail)
	mFirst = trim(mFirst);
	mSecond = trim(mSecond);
	mThird = trim(mThird);
	if ( mName == "" )
	{
		alert ("Please make sure the required fields are completely filled in");
		document.Form1.name.focus();
		return false;
	}
	
	
	if ( mEmail == "" )
	{
		alert ("Please make sure the required fields are completely filled in");
		document.Form1.email.focus();
		return false;
	}
	if ( mFirst == "" )
	{
		alert ("Please make sure the required fields are completely filled in");
		document.Form1.area.focus();
		return false;
	}
	if ( mSecond == "" )
	{
		alert ("Please make sure the required fields are completely filled in");
		document.Form1.first3.focus();
		return false;
	}
	if ( mThird == "" )
	{
		alert ("Please make sure the required fields are completely filled in");
		document.Form1.last4.focus();
		return false;
	}
	
	document.Form1.submit();
}
