//--------------------Code for Popup--------------------------------------------
function DisableForm2()
{
    var heights,Widths;
    heights = document.body.scrollHeight;
    Widths = document.body.scrollWidth;
    document.getElementById('dvModal').style.height = heights+"px";
    document.getElementById('dvModal').style.width = Widths+"px";
    document.getElementById('dvModal').style.display = "block";
}
function hideAlert(){
document.getElementById('alertBox2').style.display  = "none";
document.getElementById('dvModal').style.display = "none";
}
function makeAlert(){
DisableForm2();
document.getElementById('alertBox2').style.display = "block";
}
//--------------------------------------------------------------------------------------
function OpenSelection()
    {   
        var Image=document.getElementById('ctl00_loginView_mclinks_Img1');
        var disp = document.getElementById('SelectionArea').style.visibility;
        if(disp == 'hidden'|| disp == '')
        {
            document.getElementById('SelectionArea').style.visibility = 'Visible';
            Image.src='/Style Library/MCYImages/drpbutton2.gif';
        }
        else
        {
            document.getElementById('SelectionArea').style.visibility = 'hidden';
            Image.src='/Style Library/MCYImages/drpbutton.gif';
        }
    }

