//Открытие окна 
function OpenW(WindowName,Width,Height,Src) {
  Width += 40;
  Height += 40;
  if (Height>800) Height = 800;
  var Left = 100;
  var Top = 80;
  if (screen) {
    Left = Math.round((screen.width-Width)/2);
    Top = Math.round((screen.height-Height)/2);
  };
  //var Now = new Date();
  //var WindowName = 'Win'+Now.getTime();
  var Window = window.open(Src,WindowName,'height='+Height+',width='+Width+',location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=no,status=no,top='+Top+',left='+Left);
  Window.focus();
  return false;
};

