<!--

  function openWindow( link ) {
    var width = 620;
    var height = ( screen.height - 150 > width ? width : screen.height - 150 );

    window.open(link, "_blank", "height=" + height + ",width=" + width + ",top=" + (screen.height - height - 60) / 2 + ",left=" + (screen.width - width) / 2 + ",scrollbars=yes,menubar=no,status=no,toolbar=no,location=no,directories=no");
  }

-->