ShowSideBnr = (screen.width == "800")? false:true;

$(document).ready(function(){onFinPage()});

function onFinPage()
{   
    //alert(ShowSideBnr)
	if(ShowSideBnr)
	{
		if(parseInt(screen.width) <= 1152)
			AbsoluteCenter(document.getElementById('_DivMain'), 800, 180);			 		 
		else
			AbsoluteCenter(document.getElementById('_DivMain'), 748, 202);
			
		document.getElementById('Bnr').style.display = "block";
	}
	else
		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 != 800)
		leftPos = bnrWidth + 42;
			
	 
	obj.style.marginLeft = leftPos+"px";
	obj.style.display = "block";
	 
}
