try {document.execCommand("BackgroundImageCache", false, true);} catch(err) {}

sfHover = function() {     
	var sfEls = document.getElementById("navBarSections").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); 

function popwindow(url, sizex, sizey)
{
	win1=window.open('','client','width='+sizex+',height='+sizey+',location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,screenX=1,screenY=1,top=50,left=50');
	win1.location.href = url + '&llang='+jLanguage;
	win1.focus();
}
