function validate_form ( )
{
    valid = true;

    if ( document.manuals.Name.value == "" )
    {
        alert ( "Please fill in the 'Name' box." );
        return false;
    } 
	

    if (document.manuals.Email.value == "" || document.manuals.Email.value.indexOf("@") == -1 || document.manuals.Email.value.indexOf(".") == -1 )
    {
        alert ( "Please fill in the 'Email' box with a valid email address." );
        return false;
    } 
	
	    if (isNaN(document.manuals.Phone.value) || document.manuals.Phone.value.length < 10)
    {
        alert ( "Please fill in the 'Phone Number' box with area code and no dashes or spaces." );
        return false;
    } 	
	
	    if ( document.manuals.WhichManual.value == "" )
    {
        alert ( "Please fill in the 'Manual of Interest' box." );
        return false;
    } 

	
    return valid;
}