<!--
function zoom(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",top="+(screen.availHeight-imageHeight)/2+",left="+(screen.availWidth-imageWidth)/2+"");
	newWindow.document.open();
	newWindow.document.write('<html><title>KUT live!</title><body bgcolor="#A5CE84" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:self.close()"><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' border=0></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->

