function verify(theForm) {
	if (theForm.last_name.value == "") {
		alert("You MUST Enter Your Last Name.");
		theForm.last_name.focus();
		return false;
	}
	if (theForm.first_name.value == "") {
		alert("You MUST Enter Your First Name.");
		theForm.first_name.focus();
		return false;
	}
	if (theForm.email.value == "") {
		alert("You MUST Enter Your Email Address.");
		theForm.email.focus();
		return false;
	}
	if (theForm.conf_name.value == "no_selection") {
		alert("You MUST Choose Your Conference Name from the List.");
		theForm.conf_name.focus();
		return false;
	}
	if (theForm.presentation_format.value == "no_selection") {
		alert("You MUST Choose the Presentation Format from the List.");
		theForm.presentation_format.focus();
		return false;
	}
	if (theForm.file.value == null) {
		alert('You MUST Use the "Browse" Button to Indicate Which File you Want to Submit.');
		theForm.file.focus();
		return false;
	}
	return checkWithStudent(theForm);
}

function checkWithStudent(theForm) {
	theMessage = "Please Verify the Following:\n\n";
	theMessage += "First Name:  " + theForm.first_name.value + "\n";
	theMessage += "Last Name:  " + theForm.last_name.value + "\n";
	theMessage += "Email:  " + theForm.email.value + "\n";
	theMessage += "Conference Name:  " + theForm.conf_name.value + "\n";
	theMessage += "Presentation Format:  " + theForm.presentation_format.value + "\n";
	theMessage += "File Name:  " + theForm.file.value + "\n\n\n";
	theMessage += "Are These Correct? Okay = Yes, Cancel = No";
	return confirm(theMessage);
}

function fixCase(theText) {
	theText = theText.toLowerCase();
	if (theText.substr(1,1) != "'") {
		theText = theText.substr(0,1).toUpperCase() + theText.substr(1,theText.length);
	} else {
		theText = theText.substr(0,1).toUpperCase() + "'" + theText.substr(2,1).toUpperCase() + theText.substr(3,theText.length);
	}
	return theText;
}

