//here's the sIfr
//code for the h1 tags
var times = {  src: 'times.swf' };
sIFR.activate(times);

sIFR.replace(times, {
  selector: '#content h1', 
  wmode: 'transparent', 
  src: 'times.swf', 
  css: [ '.sIFR-root {color:#000000; font-weight:bold;}'  ]
});




function OpenChildWin(nurl,nname, nwidth,nheight) {
  popupWin = window.open(nurl, nname, 'scrollbars=1,width=' + nwidth +',height=' + nheight)
}

function runSiteScripts() {





// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}

}