function _popup( url, id, width, height )
    {
      popup = window.open( url, id, 'toolbar=no,scrollbars=1,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + ',left=100,top=100' );
      popup.focus();
    }
