<!--
function zoom_picture(file, x, y)
{
var thisWindow;
var y1=y+20;
var x1=x+20;
thisWindow = window.open("popup/"+file,'picture',"width="+x1+",height="+y1+",scrollbars=no,toolbar=no,location=no,resizable=no,menubar=no,left=350,top=220");
//thisWindow.moveTo((screen.width-x)/2,(screen.height-y)/2);
thisWindow.window.focus();
}

// -->
