<!--
function zoom(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+(tempX-imageWidth/2)+",top="+(tempY+20-imageHeight/2)+"");
	newWindow.document.open();
		newWindow.document.write('<html><title>images@vladimira.rgb</title><style type="text/css"><!--body {  background-image: url(images/obrazky/moment_b.gif); background-repeat: repeat-x; background-position: 0  bottom}--></style><body bgcolor='+bgcolor+' leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur=javascript:self.close()>'); 
	newWindow.document.write('<img src='+baseURL+imageName+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
<!--

var IE = document.all?true:false

if (!IE) document.captureEvents(Event.MOUSEMOVE)

document.onmousemove = getMouseXY;

var tempX = 0
var tempY = 0

function getMouseXY(e) {
  if (IE) { // grab the x-y pos.s if browser is IE
    tempX = event.clientX + document.body.scrollLeft
    tempY = event.clientY + document.body.scrollTop
  } else {  // grab the x-y pos.s if browser is NS
    tempX = e.pageX
    tempY = e.pageY
  }  
  // catch possible negative values in NS4
  if (tempX < 0){tempX = 0}
  if (tempY < 0){tempY = 0}  
  // show the position values in the form named Show
  // in the text fields named MouseX and MouseY
  return true
}

//-->
//-->
