function ValidateEmail(p_Email)
{
	if (p_Email.match(/^(.+)@([^\(\);:,<>]+\.[a-zA-Z]{2,4})/))
	{
		return true;
	}
	else
	{
		return confirm("The email address entered seems invalid.\n\nAre you sure you want to continue?");
	}
}