/**
    ============= Hover Menu Scripts =========================
**/
sfHover = function() 
{     
    // Gordon : Commented in the If check as the menu is not shown on every page
    if (document.getElementById("leftMenu") != null)
    {
        var sfEls = document.getElementById("leftMenu").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);

/**
    ============= Forgot Password Page Methods ====================
**/

function openNewWindow(winLoc)
{
    // Opens the give Window with the Shown Param
    window.open(winLoc,'Equazen','width=800,height=600,status=1');
}
