// drop down  //////////////////////////////////////////////////////////////
sfHover = function() {
	var sfEls = document.getElementById("globnavi").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);


// open window  //////////////////////////////////////////////////////////////
function openWindow(url,title,width,height,options) {
	var newWin;
	if (!!window && url) {
	if (!title) title = "blank";
	if (!options) options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,favorites=no";
	var whop = "width="+width+",height="+height+","+options;
	newWin = window.open(url,title,whop);
	newWin.focus();
	newWin.moveTo(10, 10)
	}
}
