// JavaScript Document

function checkForm(formObj) {
	
	if (formObj.REV_Text.value == "") {
		window.alert("You must enter a value in the field");
		formObj.REV_Text.focus();
		return false;
		
	}
	return true;
}