<!--
function toggleDisplay(id) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = '';
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
}

function dispElement(id) {
	document.getElementById(id).style.display = '';
}
function hideElement(id) {
	document.getElementById(id).style.display = 'none';
}

function openWindow(url,name,width,height) {
	popupWindow = window.open(url,name,"width="+width+",height="+height+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
}
//-->