window.onresize=init;
window.onload=init;
function init(){
	autoSide();
	autoContentHeight();
}
function autoSide(){
        var leftS=document.getElementById("sideLeft");
		var rightS=document.getElementById("sideRight");
		var s=(document.body.clientWidth/2)
		var leftPadding=s-(980/2)-131;
		var rightPadding=s-(980/2)-132;
		leftS.style.top=300+"px";
		rightS.style.top=300+"px";
        leftS.style.left=leftPadding+"px";
		rightS.style.right=rightPadding+"px";
}
function autoContentHeight(){
	    var contentObj=document.getElementById("cloumInpageContent");
	    var obj=document.getElementById("heightLineLeft");
	
	    if(contentObj!=null){
	        obj.style.height=contentObj.offsetHeight+"px";
	    }
}


