/*-------------------------------------------------
Common functions for open a window with the URL
and set up its position in the center of the screen
-------------------------------------------------*/
function TopLeft(Width, Height) {
  var winWidth, winHeight;
  winWidth = (screen.availwidth - Width)/2;
  winHeight = (screen.availheight  - Height)/2;
  var T =
  "top="    + winHeight + "," +
  "left="   + winWidth  + "," +
  "width="  + Width     + "," +
  "height=" + Height
  return T;
}
function OpenFiles(URL) {
  var MyWindow = window.open(URL, 'MyWindow', TopLeft(506,494) + "status=yes,resizable=yes,scrollbars=No");
  if(MyWindow) MyWindow.focus();
}
function Popup() { 
  var MyWindow = window.open('AircraftLibrary/AircraftDetails.asp?AircraftCode=AIR00070', 'MyWindow', TopLeft(580,600) + "status=yes,resizable=yes,scrollbars=yes");
  if(MyWindow) MyWindow.focus();
}