function VerifyData(f)
{
	if (f.Name.value.match(/^\s*$/))
	{
		alert("Please enter your Name.");
		f.Name.focus();
		return false;
	}
	if (f.Phone.value.match(/^\s*$/))
	{
		alert("Please enter your Phone.");
		f.Phone.focus();
		return false;
	}
	if (f.from.value.match(/^\s*$/))
	{
		alert("Please enter your Email.");
		f.from.focus();
		return false;
	}
	return true;
}