﻿function hfix() {
	hdHeight = document.getElementById('hdr').offsetHeight;
	pwHeight = document.getElementById('pway').offsetHeight;
	resultHeight = 515 - hdHeight - pwHeight;
	if ( resultHeight > 1 ) {
		document.getElementById('bscfix').style.height = resultHeight + "px";
		document.getElementById('bscroll').style.height = resultHeight + "px";
		$('#bscroll').jScrollPane({showArrows:false, scrollbarWidth: 6});
	}
	else {
		alert('Великоват заголовок то :(');
	};
}