
window.onload = function() {
	doMyLayout();
}
window.onresize=function(){
	doMyLayout();
}

function doMyLayout(){

	var main=document.getElementById("main");
	var ads=document.getElementById("ads");

	if(main){
		var basecss="background-color:#fff;border:none;"
		{
			var bw=getBrowserWidth();

			var gap=10;
			var adsWidth=150;

			var marginLeft=10;
			var mainSpace=bw-(marginLeft+adsWidth+gap);
			mainSpace=mainSpace-40; // fixed

			var mainLeft=marginLeft+adsWidth+gap;
			var mycss=basecss+"margin-left:"+mainLeft+"px;width:"+mainSpace+"px;padding-left:10px;border-left:dashed 1px #333;";
			main.style.cssText=mycss;

			var marginTop=110;
			var adsLeft=marginLeft;//marginLeft+mainSpace+gap;
			//var debug="border-right:solid 1px #333;";
			var debug="";
			ads.style.cssText="position:absolute;top:"+marginTop+"px;left:"+adsLeft+"px;"+debug;
		}
	}
}
function getBrowserWidth() {
        if ( window.innerWidth ) {
                return window.innerWidth;
        }
        else if ( document.documentElement && document.documentElement.clientWidth != 0 ) {
                return document.documentElement.clientWidth;
        }
        else if ( document.body ) {
                return document.body.clientWidth;
        }
        return 0;
}
