// open new window

function openWindow(url, name, rs, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, 'scrollbars,menubar,' + resize +
'width=' + w + ',height=' + h);
  window.name = 'opener';
}

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


// open interview print window
var newwin;

        function launchwin(winurl,winname,winfeatures)
        {
                
                newwin = window.open(winurl,winname,winfeatures);
                if(javascript_version > 1.0)
                {
                        //delay a bit here because IE4 encounters errors
                        //when trying to focus a recently opened window

                        setTimeout('newwin.focus();',250);
                }
        }
