
function DisableControls() 
{
    document.getElementById("aHome1").onclick = function() { return false };
    document.getElementById("aHome2").onclick = function() { return false };

    var pageLinks = document.links;

    for (var i = 0; i < pageLinks.length; i++) 
    {
        if ("aSignOut" == pageLinks[i].id ||
	            "hlPersonalInfo" == pageLinks[i].id ||
	            "hlSignInInfo" == pageLinks[i].id ||
	            GetClientId("hlEmploymentUpdateInfo") == pageLinks[i].id ||
	            pageLinks[i].id.match("Menu_Me_MyInformation")
	        )
            continue;

        pageLinks[i].onclick = showAlert;
        pageLinks[i].style.color = "Lightgray";
        pageLinks[i].href = document.location.href;
    }
}

function showAlert() 
{
    //Added by AM - 11/29/09 to fix the issue - Haris please remove it    
    //alert("Please update the missing REQUIRED profile information. You can navigate other links after completing the mandatory information.");

    //Commented by AM - 11/29/09      
    var message = "<span class='bodyTextRed'>Please update the missing REQUIRED profile information. You can navigate other links after completing the mandatory information.</span>";
    radalert(message, 470, 150, 'Required Information Missing');

    return false;
}