/*
Copyright 2002 Aellius Professional Research & Consulting
www.aellius.com
*/

function ValidateAndSubmitContact()
{
	var msg = "";
	var isvalid = true;
	
	//window.alert("got here!");
	//window.alert(document.all["txtfirstname"].value);
	if (document.getElementById("txtfirstname").value == "")
	{
		isvalid = false;
		msg += "First name is required.\r\n";
	}

	if (document.getElementById("txtlastname").value == "")
	{
		isvalid = false;
		msg += "Last name is required.\r\n";
	}
	
	if (document.getElementById("txtcompanyname").value == "")
	{
		isvalid = false;
		msg += "Company name is required.\r\n";
	}
	
	if (document.getElementById("txtemail").value == "")
	{
		isvalid = false;
		msg += "Email is required.\n";
	}
		
	if (!isvalid)
	{
		window.alert(msg);
		return false;
	}
	
	document.getElementById("frmaellius").submit();
	
	return true;
}

