<!--
function validateForm() { //First validate text boxes
    valid = true;
    if ( document.affirmativeaction.FullName.value == "" )
    {
        alert ( "Please enter your full name." );
        affirmativeaction.FullName.focus();
        valid = false;
    }
	if ( document.affirmativeaction.Date.value == "" )
    {
        alert ( "Please enter today's date." );
        affirmativeaction.Date.focus();
        valid = false;
    }
	if ( document.affirmativeaction.Position.value == "" )
    {
        alert ( "Please enter the position you are applying for." );
        affirmativeaction.Position.focus();
        valid = false;
    }
	if ( document.affirmativeaction.Email.value == "" )
    {
        alert ( "Please enter your email address." );
        affirmativeaction.Email.focus();
        valid = false;
    }
	
//Now validate radio buttons
    if ( ( document.affirmativeaction.CompleteTheForm[0].checked == false )
    && ( document.affirmativeaction.CompleteTheForm[1].checked == false ))
    {
        alert ( "Please indicate whether or not you choose to complete the remainder of the Affirmative Action survey." );
        valid = false;
    }
    return valid;
}

//--> 	 