function OpenWindow( url, width, height, options, name ) {
  if ( ! width ) width = 640;
  if ( ! height ) height = 420;
  if ( ! options ) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
  if ( ! name ) name = "outsideSiteWindow";
  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}

function OpenWindowOpener (currentWindow,url,width,height,options,name) {
  if (currentWindow.opener && currentWindow.opener.closed == false) {
    currentWindow.opener.location=url;
  }
  else {
    OpenWindow ( url, width, height, options, name );
  }
}

function urlMenu(that) {
  theURL = that.options[that.selectedIndex].value;

  if (theURL) {
    window.location = theURL;
  }
}

