function validateForm()
{
    valid = true;

    if ( document.getElementById('verify').value != "orange" )
    {
        alert ( "You must answer the 'orange' question to submit this form." );
		document.getElementById('verify').value = "";
		document.getElementById('verify').focus();
		valid = false;
    }

   	document.getElementById("contactform").setAttribute("action","_vti_bin/shtml.exe/contact.htm");
    return valid;
    
}


