// JavaScript Document// Written by Milica Kozomara, 2006, 2007function navHopUp(n) {	document.getElementById("custom"+n).style.textDecoration="underline";	document.getElementById("nav_pics"+n).vAlign="bottom";}function navHopDown(n) {	document.getElementById("custom"+n).style.textDecoration="none";	document.getElementById("nav_pics"+n).vAlign="top";}function changePic(name,height)   {var dir="sportLogos/";var ext=".jpg";window.document.getElementById("picField").src = dir+name+ext;window.document.getElementById("picField").height= height;}var newWindow;function openPic(name,height){var dir="sportLogos/";var ext=".jpg";if (!newWindow || newWindow.closed)	{ 	newWindow = window.open(dir+name+ext, 'image', 'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,width=200,height=200');	}else {	newWindow.close();	newWindow = window.open(dir+name+ext, 'image', 'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,width=200,height=200');	}}