
/* Start hiding from non-scripting browsers

	// Opens new extra window
	// -----------------------*/
	function OpenExtraWindow(url,w,h)
	{
		newwin = window.open(url,"winNamw","menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes,left=20,top=20,width="+w+",height="+h);
	}				
	
	function ShowHelp(topicName)
	{
		var HelpWindow;
		HelpWindow = window.open(topicName,"helpwin","left=600,top=400,height=300,width=200");
		HelpWindow.focus();
	}
/*// end hiding -->*/

