function view(site)
{
  var printW;
  printW = window.document.open(site, "view", 'resizable=yes,scrollbars=yes,menubar=yes,width=750,height=400');
  x = screen.width / 2 - 380;
  y = screen.height / 2 - 200;
  printW.moveTo(x,y);
  printW.self.focus();
  }