startList = function()
{
	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
  				}
  				node.onmouseout=function()
				{
  					this.className=this.className.replace(" over", "");
   				}
   			}
  		}
 	}
}

function MM_openBrWindow(theURL,winName,features)
{ //v2.0
	window.open(theURL,winName,features);
}
function popup_window(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop)
{  // v4.01
	newWindow = window.open("","newWindow","width=600,height=500,resizable=yes,scrollbars=yes,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:window.close();">');
	newWindow.document.write('<img border="0" src=\"'+imageName+'\" ');
	if (imageWidth != undefined && imageWidth.length != 0)
	{
		newWindow.document.write('width=\"'+imageWidth+'\" ');
	}
	if (imageHeight != undefined && imageHeight.length != 0)
	{
		newWindow.document.write('height=\"'+imageHeight+'\" ');
	}
	newWindow.document.write('alt=\"'+alt+'\">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
