  function Show(str) {
x = document.getElementById(str);
x.style.display = 'block';
}

  function Hide(str) {
x = document.getElementById(str);
x.style.display = 'none';
}


function OpenChildWin(nurl,nname, nwidth,nheight) {
  popupWin = window.open(nurl, nname, 'scrollbars=1,width=' + nwidth +',height=' + nheight)
}

function runSiteScripts() {

var so = new SWFObject("flashphotos.swf", "animation", "582", "240", "6", "ffffff");
so.addParam("wmode", "transparent");
so.write("flashphotos");

// 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();};
}
}

}