<!-- JAVASCRIPTS

	function closeSelf()
		{
		opener.location.reload();
		self.close();
		}

	function closeSelf_inTime(seconds)
		{
		setTimeout('self.close()', seconds);
		}

	function openBrWindow(theURL,winName,features)
		{
		window.open(theURL,winName,features);
		}

	function openUnderWindow(theURL,winName,features)
		{
		window.open(theURL,winName,features);
		parent.window.focus ();
		}

	function show (layerName)
		{
		document.getElementById(layerName).style.visibility = 'visible';
		}
       
	function hide (layerName)
		{
		document.getElementById(layerName).style.visibility = 'hidden';
		}

-->


