window.onload = function() {
	var elm = document.getElementById('rightblock');
	if (elm.clientHeight < 406) {
		elm.style.height = '406px';
	}
	else {
		document.getElementById('leftblock').style.height = (elm.clientHeight-18)+'px';
	}
}
