function validateForm(first,email)
{
	pattern = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+/;
	if(pattern.test(email) && first.length > 1)
	{
		return true;
	}
	else
    {
		alert("You information is not formated correctly.");
		return false;
	}
}
