function DH2Fix() {
var sfEls = document.getElementById("DH2").getElementsByTagName("li");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=(this.className.length>0? " ": "") + "sfhover";
}
sfEls[i].onMouseDown=function() {
this.className+=(this.className.length>0? " ": "") + "sfhover";
}
sfEls[i].onMouseUp=function() {
this.className+=(this.className.length>0? " ": "") + "sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), 
"");
}
}
}
window.onload=DH2Fix;
 function showTab(total, ID) {
            for (var i = 0; i < total; i++) {
                if (ID == i) {
                    FindObj('Tab_' + i).className = 'on';
                    FindObj('cont_' + i).style.display = '';
                }
                else {
                    FindObj('Tab_' + i).className = 'off';
                    FindObj('cont_' + i).style.display = 'none';
                }
            }
        }
 
        function FindObj(ID) {
            return document.getElementById(ID);
        }
 
        function UrlRedirect(url) {
            if (url != '#')
                window.open(url, '_blank');
        }
