<!-- Begin hiding

function stopError() {//kills js errors after squishing banner
return true;
}
window.onerror = stopError;

//for opening a popup window thats centered on page.
window.name = 'mainwindow';
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//standard popup window 
function openPopUp(url) {
  popUpWin = window.open(url, 
  'popUpWin','status=yes,scrollbars=yes,resizable=yes,width=500,height=350');
  if (popUpWin.focus) popUpWin.focus();
}

//jump menu for right search and news sites
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//adjust form input lengths in IE
function jm_fixForms(decNum){
  if(navigator.appName != 'Netscape'){
    var incrVal="."+decNum;
    for(i=0;i<document.forms.length;i++){
      for(j=0;j<document.forms[i].elements.length;j++){
        var formObj=document.forms[i].elements[j];
        if(formObj.type.toLowerCase() == "text" || formObj.type.toLowerCase() == "password" || formObj.type.toLowerCase() == "file"){
          formincr=formObj.size*eval(incrVal);
          formObj.size=formObj.size+formincr;
        }else if(document.forms[i].elements[j].type.toLowerCase() == "textarea"){
          formincr=formObj.cols*eval(incrVal/5);
          formObj.cols=formObj.cols+formincr;
        }
      }
    }
  }
}

//  End -->