MakeLayout("title",800,1120,1200);

function MakeLayout(id,minr,maxw,maxr){
if(document.getElementById){
    SetWidthTitle(id,"corpo",minr,750,maxw,950,maxr,1100);
    window.onresize=function(){ SetWidthTitle(id,"corpo",minr,750,maxw,950,maxr,1100);
    	}
    }
}

function SetWidthTitle(id,id2,a,a2,b,b2,c,c2){
var w=getBrowserWidth();
if(w==0) return;
var el=document.getElementById(id);
var el2=document.getElementById(id2);
el.style.margin="0 auto";
//el2.style.margin="0 auto";
var d=el.style;
//var d2=el2.style;
if(w<=a) d.width=a+"px";
else if(w>=c) d.width=b+"px";
else{
    var m=(b-a)/(c-a);
    d.width=parseInt(m*w+a*(1-m))+"px";
    }
}
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;
}
