

//
// Neues Fenster öffnen mit der Breite 550 Pixel
//
function print() {
  var width = 650;

  var args = print.arguments;

  var theURL   = args[0];
  var height   = (args[1] ? args[1] : 200);
  var toolbar  = (args[2] == 1 ? "yes" : "no");
  var location = (args[3] == 1 ? "yes" : "no");

  var param = "scrollbars=yes,width=" + width + ",height=" + height + ",toolbar=" + toolbar + ",location=" + location;
  var win = window.open(theURL,'coll',param);

  win.moveTo((screen.width-width)/2,(screen.height-height)/2);

  win.focus();
}


