cWin = null;

function ShowImage(pic, w, h, galery){
	if(cWin && !cWin.closed) cWin.close();
	
	if (!galery) galery = 0;
	
	if (w > 600) var nw = 600;
	else var nw = w;
	
	var nh = Math.round(h/w*nw);
	
	if (nh < h){
		var nh = h;
		var nw = w;		
	}

  pic = '<img onclick="window.close()" src="'+path+'image.php?f='+pic +'&w='+nw+'&h='+nh+'&galery='+galery+'" border="0" style="cursor:hand" alt="Close window" onclick="self.close()">';
  cWin = window.open("", "ImageWindow", "width="+ nw+", height="+nh+", location=no,status=no,resizable=no,toolbar=no,scrollbars=no,menubar=no,top=100,left=100");
  with(cWin.document){
    open();// Для порядку - сначала откроем документ на запись
    write('<html><head><title>Laneja</title></head><body style="margin:0px;padding:0px">');
    write(pic+'</body></html>');
    close();
  }
  cWin.focus();	
}