function ShowImg(pic,w,h,phone){
        if (navigator.appName == "Netscape"){
                if(parseInt(navigator.appVersion)<5){w=w+20;h=h+20;}
        }
        sm=0;
        if (w<150 && h<150) {w=w+40;h=h+40;sm=20;}
        path=pic;
        newWin=window.open("/"+path,"","toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top=50,left=100");
        newWin.document.open();
        newWin.document.writeln('<html><head><title>Фотография '+phone+'</title>');
        newWin.document.writeln('</head><body bgcolor="#F1F4F9" onKeyDown="if(window.event.keyCode==27){window.close();};"><table align="center" valign="middle" cellpadding="0" cellspacing="0" border="0" style="position:absolute; left:0; top:0;"><tr><td><img src="'+path+'" vspace='+sm+' hspace='+sm+' border="1" style="border-color:#000000;"></td></tr></table></body></html>');
        newWin.document.close();
}