<!--
function OpenWindow(sWindowType, sPageName, sPPWidth, sPPHeight)
{
  var sStyle;
  var sTop;
  var sLeft;
  var sWidth;
  var sHeight;
  var sOption;
  
  if (sWindowType == "PP1") {
    sStyle  = "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes"
    sTop    = 30;
    sLeft   = 30;
    sWidth  = 700;
    sHeight = 500;
  }
  else {
    if (sWindowType == "PP2") {
      sStyle  = "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes"
      sTop    = 50;
      sLeft   = 50;
      sWidth  = 700;
      sHeight = 500;
    }
    else {
      if (sWindowType == "PPX") {
        sStyle  = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no"
        sTop    = 30;
        sLeft   = 30;
        sWidth  = sPPWidth;
        sHeight = sPPHeight;
      }
      else {
        if (sWindowType == "PPNL") {
          sStyle  = "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes"
          sTop    = 30;
          sLeft   = 30;
          sWidth  = sPPWidth;
          sHeight = sPPHeight;
        }
      }
    }
  }
  sOption = sStyle + ",top=" + sTop + ",left=" + sLeft + ",width=" + sWidth + ",height=" + sHeight;
  window.open(sPageName,"",sOption);
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  if (restore) selObj.selectedIndex=0;}
//-->


