function OpenWindow(url, windowId, options)
{
	if ((options == null) || (options == ""))
	{
		options	= "location=yes,status=yes,scrollbars=yes,menubar=yes,toolbar=yes,top=50,left=50";
	}

	var Popup	= window.open(url, windowId, options);
	
	if (Popup.focus)
	{
		Popup.focus();
	}
}

function NavOn(div)
{
	if ((div.childNodes[0] != null) && (div.childNodes[0].childNodes[0] != null) && (div.childNodes[0].childNodes[0].tagName.toUpperCase() == "IMG"))
	{
		var IsHome	= (window.location.pathname == "/" || window.location.pathname == "/Default.aspx");
		var Image	= div.childNodes[0].childNodes[0];
		Image.src	= "/Images/List_RedBullet" + ((IsHome) ? "Home" : "") + ".png";
	}
}

function NavOut(div)
{
	if ((div.childNodes[0] != null) && (div.childNodes[0].childNodes[0] != null) && (div.childNodes[0].childNodes[0].tagName.toUpperCase() == "IMG"))
	{
		var IsHome	= (window.location.pathname == "/" || window.location.pathname == "/Default.aspx");
		var Image	= div.childNodes[0].childNodes[0];
		Image.src	= "/Images/List_GrayBullet" + ((IsHome) ? "Home" : "") + ".png";
	}
}
