window.onload = function() {
	resizer();	
}
function resizer () {
	var cheight = $('Content').getHeight();
	$('Rightbar').style.height = cheight+'px';
	if($('Leftbar')){
		$('Leftbar').style.height = cheight+'px';
		if($('slogo')){
			$('slogo').setAttribute('style', 'position: absolute;bottom: 10px;left:20px;')
		}
	}
	//window.reload();
}