<!--
function openWindow(src, width, height) {
	var page = src.getAttribute('href');
	var properties = "width=" + width + ",height=" + height + ",innerWidth=" + width + ",innerHeight=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1";
	result = window.open(page, "popup", properties, true);
}

function cancelSubmission()
{
	if ( confirm('Are you sure you wish to cancel?') )
		document.location = document.location;
}

function jump(selectCtrl)
{
	if ( selectCtrl.selectedIndex > 0 )
		document.location = selectCtrl.options[selectCtrl.selectedIndex].value;
}
//-->