/*
//here's the sIfr
//code for the h1 tags
var h1 = {  src: 'h1.swf' };
sIFR.activate(h1);

sIFR.replace(h1, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'h1.swf', 
  css: [ '.sIFR-root {color:#760229; }'  ]
});
*/


if(typeof sIFR == "function"){
	sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"h1.swf", sColor:"#760229", sWmode : "transparent", sCase:"", sFlashVars:"offsetLeft=1&offsetTop=0"}));
}



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();};
}
}

}