<!--

function validate_form ( )
{
    valid = true;

    if ( document.contactForm.name.value == "" )
    {
     	alert ( "Please enter your Name before continuing." );
        valid = false;
    }

    if ( document.contactForm.email.value == "" )
    {
     	alert ( "Please enter your Email address before continuing." );
        valid = false;
    }

    if ( document.contactForm.comments.value == "" )
    {
     	alert ( "Please enter some Comments before continuing." );
        valid = false;
    }
    
    return valid;
}

//-->
