//These override the default settings in /static/as/jscript/common.js

var popup = new popupWindow(
  'popup',              // target name
  screen.width/2, screen.height-200,  // size: width, height
  screen.width/4, 100, // position: left, top
  0,                      // location field
  0,                      // menubar
  1,                      // resizable
  1,                      // scrollbars
  0,                      // statusbar
  0);                     // toolbar
  
var internalpopup = new popupWindow(
  'internalpopup',              // target name
  812, screen.height-200,  // size: width, height
  Math.max((screen.width-812)/2,0), 100, // position: left, top
  0,                      // location field
  0,                      // menubar
  1,                      // resizable
  1,                      // scrollbars
  0,                      // statusbar
  0);                     // toolbar 