<!--
	function getSelectValue(objectName) {
        return objectName.options[objectName.selectedIndex].value
    }

	function getSelectDisplay(objectName) {
        return objectName.options[objectName.selectedIndex].text
    }
	
	function getRadioValue(radioObject) {
		var value = null
		for (var i=0; i<radioObject.length; i++) {
			if (radioObject[i].checked) {
				value = radioObject[i].value
				break}
		}
		return value
	}

	function getUpperCase(control) {
		objectvalue = control.value
		control.value = objectvalue.toUpperCase()
	}

	function ValidateNotEmpty(control) {
		var itemvalue = control.value
		if (itemvalue == "") {
		    alert(control.name + " cannot be empty.");
		    control.focus();
		    return (false);
		  }
		return (true);
	}

	function SelectContents(objectName) {
		objectName.select();
    }

//-->

