﻿/*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, title)
{
	var win = window.open("", "_blank", "height=" + height + ",width=" + width + ",resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
	win.location.href = "javascript:document.write('<html><head><title>" + title + "</title><style>html,body{padding:0;margin:0;}</style></head><body><a%20href=#%20onclick=window.close();><img%20src=" + document.location.protocol + "//" + document.location.host + imageUrl + "%20border=0></a></body></html>')";
}
