
// JavaScript Document

function checkRequired(theForm)
{
		var f = theForm;
		//GENERAL INFORMATION 
		
		if (f.fName.value == "") {
			alert ("Please enter your First Name.");
			f.fName.focus();
			return false;
		}
		
		if (f.Email.value == "") {
			alert ("Please enter your Email Address");
			f.Email.focus();
			return false;
		}

				//End of Background Inforamtion
				
				
		
		/**/
}



