
function PopUp(id)
{
  var width="616";
  var height="594";
  var WinName="Домой!";
  var url="http://domoy.net/photo/?id="+id;
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2 - 50;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var win1 = window.open(url, "w1", styleStr);
}
