function Validate(theForm)
{

if (theForm.name.value == "")
{
alert("Please enter your full Name.");
theForm.name.focus();
return (false);
}

if (theForm.email.value == "")
{
alert("Please enter your E-MAIL address.");
theForm.email.focus();
return (false);
}

if (theForm.phone.value == "")
{
alert("Please enter your 10-digit phone number.");
theForm.phone.focus();
return (false);
}

if (theForm.message.value == "")
{
alert("Please enter a brief message.");
theForm.message.focus();
return (false);
}

return (true);
}