var netbarState=0;
var selectboxes;

if (goodBrowser)
{
	document.write("\n<div id=\"divNetbar\" style=\"position:absolute; top:106px; left:0px; width:783; height:170px; overflow:hidden\"><script type=\"text/javascript\">AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','783','height','300','src','images/Flash/menu','quality','high','wmode', 'transparent','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','images/Flash/menu');</script></div>\n"
		+ "<script language=\"VBScript\"\>\n"
		+ "on error resume next\n"
		+ "Sub objNetbar_FSCommand(ByVal command, ByVal args)\n"
		+ "   call objNetbar_DoFSCommand(command, args)\n"
		+ "end sub\n"
		+ "</script\>\n"
	);
	selectboxes = document.body.getElementsByTagName("SELECT");
}

function objNetbar_DoFSCommand (command, args)
{
	// Hack for IE5.0
	if (command == "SHOW")
	{
		if (netbarState != 1)
		{
			netbarState = 1;
			divNetbar.style.height = netbarHeightOver + "px";
			
			for (i=0; i < selectboxes.length; i++)
			{
				selectbox = selectboxes[i];
				selectbox.style.visibility="hidden";
			}
		}
	}
	else if (command == "HIDE")
	{
		netbarState = 0;
		divNetbar.style.height = netbarHeight + "px";
		
		for (i=0; i < selectboxes.length; i++)
		{
			selectbox = selectboxes[i];
			selectbox.style.visibility="visible";
		}
	}
}



