var imgLayout="";

function imgset(){
	try{
		clearTimeout(imgLayout);
		var parentWidth=document.body.clientWidth;

		if (parentWidth > 930){
			mrgn=(parentWidth-914)/2;
			if (mrgn > 1){
				theObj=document.getElementById('cha101');
				theObj.style.paddingLeft=mrgn+"px";
			}
		}else{
			mrgn=(parentWidth-615)/2;
			if (mrgn > 1){
				theObj=document.getElementById('cha101');
				theObj.style.paddingLeft=mrgn+"px";
				theObj=document.getElementById('cha102');
				theObj.style.paddingLeft=mrgn+"px";
			}
		}
	}catch(e){
	}
}

function resizeEv(){
	theObj=document.getElementById('cha101');
	theObj.style.paddingLeft="0px";
	theObj=document.getElementById('cha102');
	theObj.style.paddingLeft="0px";
	imgLayout=setTimeout("imgset()",400);
}

function wResize(){ 
	resizeEv(); 
} 

window.onresize = wResize; 
