sfHover = function() {

   var sfLang = document.getElementById("lang");
   if (!sfLang) return;
   var sfEls = sfLang.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"), "");
      }

   }

}

window.attachEvent && window.attachEvent("onload", sfHover);

function OpenWin(link,width,height)
{
window.open(link,'_blank','width='+(width||720)+',height='+(height||600)+',toolbar=0,location=0,menubar=0,top=0,left=0,scrollbars=1,resizable=1');
}

function OpenNoScrollWin(link,width,height)
{
window.open(link,'_blank','width='+(width||720)+',height='+(height||600)+',toolbar=0,location=0,menubar=0,top=0,left=0,scrollbars=0,resizable=1');
}


