//Открытие окна 
function OpenW(w,h,name) {
  var Width = w;
  var Height = h;
  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();
  window.open(name, WindowName ,'height='+Height+',width='+Width+',location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=no,status=no,top='+Top+',left='+Left);
  return false;
};
