//ROLLOVER FUNCTIONSfunction imgOn(imgName) {	if (document.images) {		document[imgName].src = eval(imgName + "mo.src");	}}function imgOff(imgName) {	if (document.images) {		document[imgName].src = eval(imgName + ".src");	}}	function popUp(strURL,strType,strHeight,strWidth) {var newWin = null;if (newWin != null && !newWin.closed) 	newWin.close(); 	var strOptions="";	if (strType=="kiosk") {		strHeight="407"		strWidth="525"	}	strOptions="scrollbars=no,resizable=no,height="+strHeight+",width="+strWidth;	newWin = window.open(strURL, 'newWin', strOptions); 	newWin.focus(); }