
//drop down links for iframe
function jumpThing(targ,selObj,restore){ 
  eval(targ+".frameSection.location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// popup code
function openWindow(URL, windowName, windowFeatures){
newWindow = window.open(URL, windowName, windowFeatures)
}