if(window.scrollbars) window.scrollbars.visible=false;
document.body.scroll = 'no';

function formatLayout(){

	var HEIGHT = parseInt(document.documentElement.clientHeight) + 'px';
	
	document.getElementById('baure').style.width = parseInt(parseInt(document.documentElement.clientWidth)/2)-7 + 'px';
	document.getElementById('baure').style.height = HEIGHT;
	
	document.getElementById('middle').style.height = HEIGHT;
	document.getElementById('middle').style.left = parseInt(parseInt(document.documentElement.clientWidth)/2)-7 + 'px';

	document.getElementById('fabrikas').style.width = parseInt(parseInt(document.documentElement.clientWidth)/2)-7 + 'px';
	document.getElementById('fabrikas').style.height = HEIGHT;
	document.getElementById('fabrikas').style.left = parseInt(parseInt(document.documentElement.clientWidth)/2)+7 + 'px';
	
	document.getElementById('b_logo').style.top = parseInt(parseInt(HEIGHT)/2)-150 + 'px';
	document.getElementById('f_logo').style.top = parseInt(parseInt(HEIGHT)/2)-50 + 'px';

}

formatLayout();

window.onresize = formatLayout;
