function Validate(theForm)
{
	if (!check(theForm, 'First_Name', 'First Name', 3, 50, 'characters','. '))
		return(false);
	if (!check(theForm, 'Last_Name', 'Last Name', 3, 50, 'characters','. '))
		return(false);
	if (!check(theForm, 'Email', 'Email', 3, 10000, 'email',''))
		return(false);
	if(!check(theForm, 'Address','Address', 5, 200, 'characters','1234567890- #,_./\''))
		return(false); 
	if (!check(theForm, 'Phone_No', 'Phone', 3, 15, 'digits','1234567890-'))
		return(false);
	if (!check(theForm, 'Requirements', 'Requirements', 3, 1000000, 'characters','1234567890 -_.,\/'))
		return(false);


return(true);
}


