﻿function OnLoadStuff() {
    return;
	var bt = document.getElementById('BottomDIV');

    bt.style.position = 'absolute';
    bt.style.left = '189px';

    bt.style.top = (document.body.clientHeight - bt.offsetHeight) - 3 + 'px';

    if (document.getElementById('DivCenter').offsetHeight + document.getElementById('DivTop').offsetHeight > parseInt(bt.style.top + bt.offsetHeight)) {
        bt.style.top = document.getElementById('DivCenter').offsetHeight + document.getElementById('DivTop').offsetHeight - parseInt(bt.offsetHeight) + 30 + 'px';
    }
}
function OnLoadStuffWithShadowbox() {
    OnLoadStuff();
    Shadowbox.init();
}

