//Function for confirmation of delete operation.
function callLink(link, name)
    {
        if(confirm("Are you sure you want to delete " + name + "?"))
        {
            window.location = link;
        }
    }

//Function for confirmation of autologin to a site.
function confirmAutologinSite(link, name)
    {
        if(confirm("Are you sure you want to become Site Administrator of " + name + "?"))
        {
            window.frames.parent.location = link;
        }
    }

//Function for confirmation of autologin to user level.
function confirmAutologinUser(link, name)
    {
        if(confirm("Are you sure you want to login as user " + name + "?"))
        {
            window.frames.parent.location = link;
        }
    }

//Function for confirmation of autologin to reseller level.
function confirmAutologinReseller(link, name)
    {
        if(confirm("Are you sure you want to login as Reseller " + name + "?"))
        {
            window.frames.parent.location = link;
        }
    }

//Function for confirmation of suspend or resume operation.
function confirm_suspendResume(link, status, name)
    {
        if(confirm("Are you sure you want to " + status + name + "?"))
            window.location = link;
    }
