<!--

function openWindow(theURL) {
	window.open(theURL,'Popup','scrollbars=yes,width=500,height=500');
	return false;
}

function show_hide(elementid) {
	// show the requested div
	if (document.getElementById(elementid).style.display == '')
		{
		document.getElementById(elementid).style.display = 'none';
		}
	else
		{
		document.getElementById(elementid).style.display = '';
		}
	return false;
}

-->