// Newcastle Hockey Association
// Script by Distinctive Web Services - http://www.distinctive.com.au/


// Check for IE
var isNS4 = (document.layers)? true : false;
var isIE = (document.all)? true : false;
var isNS6 = (!isIE && document.getElementById)? true : false;

// Set the mouse monitor events
//if (isNS6) document.addEventListener("mousemove", checkLayerVisibility, true);
//if (isNS4) document.captureEvents(Event.MOUSEMOVE);
//if (isIE || isNS4) document.onmousemove = checkLayerVisibility;

// Toggles menus
function toggleMenus (_objectid)
{
	for (x = 1; x <= 7; x++)
	{
		document.getElementById("rootmenu_" + x).className = "normal"; 
	}
	if (_objectid != "<none>") document.getElementById(_objectid).className = "selected"; 
}

// Launch the gallery viewer
function launchGalleryViewer(path, filename)
{
	window.open("/gallery-viewer.aspx?path=" + path + "&filename=" + filename, "gallery-viewer", "width=600,height=600,resizable,scrollbars=yes,status=1"); 
}
