<script type="text/javascript">
<!--

function validate_form()
{
    valid = true;

    if ( document.form1.first_name.value == "" )
    {
        alert ( "Please fill in the 'Your Name' box." );
        valid = false;
    }
    
    return valid;
}

//-->
</script>





