function singlePopUp(theURL,theTop,theLeft,theWidth,theHeight,theScroll,theResize) {
    var theProperties = "";    theProperties += "width=" + theWidth + ", height=" + theHeight;  theProperties += ", scrollbars=" + theScroll + ", resizable=" + theResize;  theProperties += ", top=" + theTop + ", left=" + theLeft + ", status='no'";
  
  singlePopwin=window.open(theURL, "", theProperties);  
}

function jumpMenuOriginal(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function resizeIt(x,y) {
    x=x+8;
  y=y+8;  
  if(document.layers){
    window.outerWidth =x;
    window.outerHeight=y;
  }  else {
    window.resizeTo(x,y);
  }
}

function closeWindow() {
  window.close();
}