function TopMenuOver(oMenuItem)
{
	oMenuItem.className += ' overactive';
	if (oMenuItem.previousSibling != null)
	{
		if (oMenuItem.previousSibling.className != 'active')
		{
			oMenuItem.previousSibling.className = 'leftofactive';
		}
	}
}

function TopMenuOut(oMenuItem)
{
	if (oMenuItem.className.indexOf('leftofactive') != -1)
	{
		oMenuItem.className = 'leftofactive';
	}
	else
	{
		oMenuItem.className = '';
	}
	if (oMenuItem.previousSibling != null)
	{
		if (oMenuItem.previousSibling.className != 'active')
		{
			oMenuItem.previousSibling.className = '';
		}
	}
}

function OpenPrintWindow()
{    
    var positionRight = location.href.length;
	if (location.href.indexOf("#") != -1) 
	{
		positionRight = location.href.indexOf("#");
	}
	var printUrl = location.href.substr(0,positionRight);
	printUrl = printUrl + ((printUrl.indexOf("?") != -1) ? "&" : "?") + "popup=true" + "&print=true";
	    
	var printwindow = window.open(printUrl, "newwindow", "width=550, height=350, location=no, menubar=yes, status=no, toolbar=no, scrollbars=yes, resizable=yes");			
}


