function zoom(item_id,foto_id)
{
	var item_id;
	var foto_id;
	var id;
	var width = 640;
	var height = 610;
	var left = Math.floor((screen.width - width) / 2);
    var top = Math.floor((screen.height - height) / 2);
	
	var target = '../zoom.php?item='+item_id+'&foto='+foto_id;
	
	
	window.open(target, "zoom_window", "toolbar=no, location=0, directories=0, status=no, menubar=0, scrollbars=0, resizable=no, copyhistory=0, left="+left+", top="+top+", width="+width+", height="+height+", alwaysRaised=yes");

}