
function openW(h, n, that, next) {
	var address = "";

	if (h.indexOf('#') > 0) {
		address = n
		
	} else {
		address = h;
	}
	
	
	w = window.open(address, "popup", "width=540,height=600,left=100,top=100,scrollbars=yes");
	next.onclick="return false;";
	
  w.focus();
}

function openWindow(address) {
	w = window.open(address, "popup", "width=540,height=600,left=100,top=100,scrollbars=yes");
	w.focus();
}

function openFlash(address) {
	w = window.open(address, "popup2", "width=990,height=690,left=0,top=0,scrollbars=no");
	w.focus();
}

sfHover = function() {
  var sfEls = document.getElementById("nav").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
      sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
      }
      sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
      }
  }
 
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
