function setSize(width_left_left)    
{ 


document.getElementById('main_left_left').style.width = width_left_left + 'px';

var width = document.getElementById('main_left').clientWidth;
var width3 = width - width_left_left - 40;
document.getElementById('main_left_right').style.width = width3 + 'px';


}

function resize(width_left_left, width_right)
{
var containerWidth =  parseInt(getClientWidth() > minWidth ? getClientWidth() : minWidth);

var width4 = containerWidth - 40;
document.getElementById('top_panel').style.width = containerWidth +'px';
document.getElementById('header').style.width = containerWidth +'px';
document.getElementById('menu').style.width = containerWidth +'px';
document.getElementById('main').style.width = containerWidth +'px';
document.getElementById('footer_footer').style.width = width4+'px';

var width3 = containerWidth - width_right - 50;
document.getElementById('main_left').style.width = width3+'px';

var width  = width3 - width_left_left;
document.getElementById('main_left_right').style.width = width+'px';


var width6 = document.getElementById('tel').clientWidth;
var width5 = containerWidth - width6;
//document.getElementById('logo').style.width = width5+'px';

if (document.getElementById('BX_GMAP_map1')) {

document.getElementById('BX_GMAP_map1').style.width = width+'px';
document.getElementById('BX_GMAP_map1').style.border= '1px solid #000000';
}

}

function getClientWidth()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}