﻿/*var navRoot = document.getElementById("menu");

if (document.all && navRoot) 
{
	var listItems = navRoot.getElementsByTagName("li");
	for (i = 0; i < listItems.length; i++) 
	{
		listItems[i].onmouseover=function() 
		{
			this.className+=" over";
		}
		listItems[i].onmouseout=function() 
		{
			this.className=this.className.replace(" over", "");
		}
	}
}


function popupImage(width, height, imageUrl)
{
	window.open(imageUrl, "imagePopup", "height=" + (height + 30) + ",width=" + (width + 30) + ",resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
}
*/