function getel() {
lc = document.getElementById("left_col");
rc = document.getElementById("right_col");
lb = document.getElementById("lbdown");
rb = document.getElementById("rbdown");
ri = document.getElementById("right_inn");
cont2 = document.getElementById("cont_div");
lbl2 = document.getElementById("lblock");
mar();
}

function mar() {
if (cont2.offsetHeight > (lbl2.offsetHeight+85)) {
lbl2.style.height=(cont2.offsetHeight-80)+"px";
}
dww=document.body.clientWidth;
dw=(dww-779)/100;
w1=(73+dw)*dww*0.01;
w1=parseInt(w1,10);
if (w1 < 567) {w1=567; w2=212;}
else {w2=dww-w1;}
wr=100-(3+(parseInt(dw,10)*2));
rc.style.width=w1+"px";
lc.style.width=w2+"px";
rb.style.width=w1+"px";
lb.style.width=w2+"px";
ri.style.width=wr+"%";
}
