function PopUp( theURL, theFeats ) {
  p_win = window.open( theURL, 'p_win', theFeats );
  p_win.focus();
}
function ClosePop() { self.close(); }
function JumpTo( theURL ) { if ( '' != theURL ) document.location.href = theURL; }