// JavaScript Document

function validate(theForm)
{
			

	if (theForm.strFullName.value == "")
	{
		alert("Please enter your Name.");
		theForm.strFullName.focus();
		return(false);	
	}	
	if (theForm.strFullName.value == "Enter Your Name")
	{
		alert("Please enter your Name.");
		theForm.strFullName.focus();
		return(false);	
	}		
	if (theForm.strEmailAddress.value == "")
	{
		alert("Please enter your E-Mail Address.");
		theForm.strEmailAddress.focus();
		return(false);	
	}
	if (theForm.strEmailAddress.value == "Enter Your E-Mail Address")
	{
		alert("Please enter your E-Mail Address.");
		theForm.strEmailAddress.focus();
		return(false);	
	}

		
}
