function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function openWin(url, ww, wh) {
  nWin = window.open("", "newwin", "width =" + ww + ", height=" + wh + ", scrollbars=yes, left=0, top=0");
  nWin.location.href = url;
  if (nWin.opener == null) nWin.opener = window;
  nWin.opener.name = "opener";
}

function ClosenGoto(url) {  

  var oWin = self.opener;
  
  if (oWin == null) {
    self.location.href = url;
  } else {
    oWin.location.href = url;
    oWin.focus();
  
    self.close();
  }
  
}