﻿// JScript File

function Show(cid) {
    TopSites._Default.Show(cid, ShowCB);
}

function ShowCB(result) {
    if (result) {
        var obj = dge('imageLoaderContainer');
        if (obj) {
            obj.innerHTML = '';
            obj.innerHTML = result.value;
            if (typeof(obj.style.top) != 'number') {
                obj.style.top = 0;
            }
            obj.style.top = document.documentElement.scrollTop+'px';
            var x = document.documentElement.clientWidth;
            obj.style.zIndex = 110;
            obj.style.display = 'block';
        }
    }
}

function Hide(to) {
    if (!to || to==0) {
        var obj = dge('imageLoaderContainer');
        if (obj) {
            obj.style.display = 'none';
            obj.innerHTML = '';
        }
    } else {
        setTimeout('Hide(0)', to);
    }
}

