    function ShowContactUs(show){
        var divContactUs = document.getElementById('divContactUs');
        if(show)
        {
            divContactUs.style.display = 'block';
        }else{
            divContactUs.style.display = 'none';
        }
        
        return false
    }
    
    function ShowForgotten(show){
        var divForgotten = document.getElementById('divForgotten');
        if(show)
        {
            divForgotten.style.display = 'block';
        }else{
            divForgotten.style.display = 'none';
        }
    }
