<!-- Begin WINDOW POP-UP OPTIONS CODE

// ONLY USE lowercase FOR ALL OPTIONS


// WINDOW POPUP OPTIONS

var PUW_width 		= "700"		// WINDOW POPUP HEIGHT
var PUW_height 		= "850"		// WINDOW  POPUP HEIGHT
var PUWscrollbarS 	= "1"		// TURN ON WINDOW POPUP SCROLLBARS "1" FOR ON "0" FOR OFF



// COPYRIGHT 2009 ? Kitchener-Waterloo Skating Club
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



// START WINDOW POPUP

function popUpWindow(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + PUWscrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+PUW_width+',height='+PUW_height+'');");
}

// END WINDOW POPUP CODE


IEMhover = function() {
	var IEMh = document.getElementById("menunav").getElementsByTagName("LI");
	for (var i=0; i<IEMh.length; i++) {
		IEMh[i].onmouseover=function() {
			this.className+=" IEMhover";
		}
		IEMh[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEMhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEMhover);

// End -->
