	try
	{
		showLinksFrame();
	}
	catch (exception)
	{
		setTimeout("showLinksFrame()",500);
	}
	
	function showLinksFrame()
	{
	//	when the page is completely ready - then show the links frame.
	//	Netscape does not recognize readystate.
	
		if ( ( top.document.getElementById("site_code") != null ) &&
		     ( ns6 || top.document.readyState == 'complete' ) )
		{
			top.document.getElementById("trLinksFrame").style.display = '';

		//  Set the right menu to reach the bottom of the page
		//	If this is the 'Archive' page, there is no right menu.
		
			switch ( top.document.getElementById("site_code").value )
			{
			   case '28'  :
			   case '118' :
			      break;
			   default :
			      setMenuHeight();
			} 
		}
		else
		{
			setTimeout("showLinksFrame()",500);
		}
	}
	
