// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


function openNew(targ) {
    var newURL = targ;
    var x = 700;
    var y = 450;
    var secPrefix = "";
    var wcfg = "Height=" + y + ",width=" + x +
        ",status=yes,location=yes,menubar=yes,toolbar=yes,resizable=yes,scrollbars=yes";
    newUrl = secPrefix + newURL;
    newWin = window.open(newURL, "new", config=wcfg);
    newWin.focus();
}

 function openPopup(url, name, width, height) {
      var fullurl = document.URL;
      targeturl = fullurl.split( "/DesktopServlet" )[0];
      adjustedUrl = targeturl + url;

      popup_window = window.open( adjustedUrl, name, 'width=' + width + ',height=' + height +',resizable=yes,scrollbars=yes');
      popup_window.focus();
      }
	  
	  function namedSizeJump(selObj,winName,list,width,height) {
  if ( list == 1 ) {
    var newURL = selObj.options[selObj.selectedIndex].value;
  }
  else {
    var newURL = selObj;
  }
  if ( newURL != null && newURL != "" ) {
      newWin = window.open( newURL, winName, "status,location,menubar,scrollbars,toolbar,resizable,width=" + width + ",height=" + height );
      newWin.focus();
  }
  if ( list == 1 ) selObj.selectedIndex=0;
}