function Zoom(pic){
  var cWidth=window.screen.width;
  var cHeight=window.screen.height;
	leftOffset=Math.ceil((cWidth-550)/2);
	topOffset=Math.ceil((cHeight-800)/2);
	win=open("", "www", "width=550,height=800,resizable=yes,scrollbars=1,status=1,top=50,left="+leftOffset);
    win.document.open();
	win.document.write("<head><title>www.ursa-kostroma.ru</title></head>\n");
    win.document.write("<body bgcolor='#e8e8e7' leftmargin=0 bottommargin=0 rightmargin=0 topmargin=0><table align=center height='100%'><tr><td><img src='"+pic+"' border=1></td></tr></table></body>");
    win.document.close();
	win.focus();
}


