function Validate(theForm)
{
    if (Trim(theForm.LastName.value).length==0)
    {
        alert("Please enter a value for the \"First Name\" field.");
        theForm.FirstName.focus();
        return (false);
    }

    if (Trim(theForm.LastName.value).length==0)
    {
        alert("Please enter a value for the \"Last Name\" field.");
        theForm.LastName.focus();
        return (false);
    }

    if (Trim(theForm.DayPhone.value).length==0 && Trim(theForm.EveningPhone.value).length==0 && Trim(theForm.Email.value).length==0)
    {
        alert("Please provide one of the following: \n \"Daytime Phone\" \n \"Evening Phone\" or \n \"Email\"");
        theForm.DayPhone.focus();
        return (false);
    }

    if (theForm.Report.selectedIndex < 0)
    {
        alert("Please select one of the \"Report\" options.");
        theForm.Report.focus();
        return (false);
    }

    if (theForm.Report.selectedIndex == 0)
    {
        alert("The first \"Report\" option is not a valid selection.  Please choose one of the other options.");
        theForm.Report.focus();
        return (false);
    }
    return (true);
}
//
