<!--

function confirmSubmit(message) {
	var agree = confirm(message);
	if (agree)
		return true ;
	else
		return false ;
}

function submitText(formname) {
	document.formname.submit.value='Submit Changes';
}


function goAway(id) {
	document.getElementById(id).style.display = 'none';
}


function toggle(id) {
	if (obj = document.getElementById(id)) {
		obj.style.display = ( (obj.style.display == 'block') ? 'none' : 'block');
	}
}
-->
