document.write("<SCRIPT LANGUAGE='JavaScript1.2' SRC='/scripts/check_form_base.js'></SCRIPT>");

function check_speaker_form()  {

// email
	if  (!hasValue(document.speaker_form.email, "TEXT" )) {
        if  (!onError(document.speaker_form, document.speaker_form.email, document.speaker_form.email.value, "Please enter an email address."))
        {
           document.speaker_form.email.focus();
           return false; 
        }
    }	

// verification code	
	if  (!hasValue(document.speaker_form.verify, "TEXT" ) || document.speaker_form.verify.value != 'E4U6T') {
        if  (!onError(document.speaker_form, document.speaker_form.verify, document.speaker_form.verify.value, "Please enter the correct verification code."))
        {
           document.speaker_form.verify.focus();
           return false; 
        }
    }	
} // end of function check_contact_form
