function validate_form ( )
{
    valid = true;

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


	    if (document.reviewcompany.Email.value == "" || document.reviewcompany.Email.value.indexOf("@") == -1 || document.reviewcompany.Email.value.indexOf(".") == -1 )
    {
        alert ( "Please fill in the 'Email Address' box with a valid email address." );
        return false;
    }  


    if ( document.reviewcompany.comments.value == "" )
    {
        alert ( "Please fill in the 'Comments' box." );
        return false;
    } 
	
	
    return valid;
}
