var myScreenWidth,myActualWidth,myReminePart,aa;
myScreenWidth=screen.width;
myActualWidth=970;
myReminePart=parseInt(myScreenWidth)-parseInt(myActualWidth);
myLeftPosition=parseFloat(myReminePart)/2;
document.getElementById("pageBody").style.left =myLeftPosition+"px";


