//<!--
// Jump Menu

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

//PopUp Window

function openWindow(url) {
  popupWin = window.open(url, name, 
'scrollbars,resizable,width=320,height=400,left=100,top=100')
}

//Footer PopUp Window
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// -->