ShowSideBnr = (screen.width < 800) ? false : true;

function onFinPage()
{
    if (ShowSideBnr) {
        if (parseInt(screen.width) <= 1152)
        {            
            AbsoluteCenter(document.getElementById('DivMain'), 622, 180);
        }
        else
            AbsoluteCenter(document.getElementById('DivMain'), 748, 202);

        document.getElementById('Bnr').style.display = "block";
    }
    else
    {
        $('#Bnr').hide();
        AbsoluteCenter(document.getElementById('DivMain'), 788, 0);
    }

}
 
function AbsoluteCenter(obj, objWidth, bnrWidth)
{	
	var leftPos = 0;
	var curWidth = parseInt(screen.width);
	leftPos = ((curWidth- objWidth)/2);
	if (bnrWidth >= leftPos && curWidth != 622)
		leftPos = bnrWidth + 50;

	obj.style.marginLeft = leftPos+"px";
	obj.style.display = "block";	 
}
