function MM_jumpMenu(targ,selObj,restore,fname){ //v3.0
  eval(targ+".location='"+fname+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

 var popUpWin=0;
function popUpWindow(URLStr, width, height,scrollb)
{
  var top,left;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  top = (window.screen.availHeight / 2) - (height / 2);
  left = (window.screen.availWidth / 2) - (width / 2);
  
  popUpWin = window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrollb+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}
