// JavaScript Document

function doSubmit()
{
	if (checkform())
	{
		document.forms[0].submit()
	}
}	


function checkform()
{
	//validate(frame, field, label, method)
	if (!validate(window,document.forms[0].txtFirstName,"First Name","isnotempty"))
	{
		return false;
	}
	if (!validate(window,document.forms[0].txtLastName,"Last Name","isnotempty"))
	{
		return false;
	}
	if (!validate(window,document.forms[0].txtOrganization,"Organization","isnotempty"))
	{
		return false;
	}
	if (!validate(window,document.forms[0].txtEmail,"Email Address","isnotempty","isemailaddress"))
	{
		return false;
	}
	if (!validate(window,document.forms[0].txtPhone,"Phone","isnotempty"))
	{
		return false;
	}
	/*if (document.forms[0].selAreaOfInterest.selectedIndex == 0)
	{
		alert('Please select Area of Interest.')
		document.forms[0].selAreaOfInterest.focus()
		return false;
	}*/
	return true;
}
