<!--

  function my_popup(url) {
    var theWindow = window.open(url, '_blank', 'location=0, statusbar=0, scrollbars=1, menubar=0, width=550, height=550');
    theWindow.moveTo(50,50);
    theWindow.focus();

    return theWindow;
  }

//-->

