
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//--- onload functions ----------------------------------
function siteSpecificOnload(){
  pageSpecificOnload();
  //add additional functions here
  }

// do nothing on pages where pageSpecificOnload does not appear:
function pageSpecificOnload(){
  var hereforpagespecific;
  }

