

<!--
	function setValue(fieldName, strValue) {
		//sets the value of a field to the supplied string
		fieldName.value = strValue;
	}

	function confirmCancel(form){
		if (confirm('Are you sure you want to cancel? ')) { return false; } 
		else { form.submit(); }
	}

//-->
