/*
(function(){
	function fix_height(){
		if (!document.body) return;
		var html = document.body.parentNode;
		if (html && html.scrollHeight > 0) {
			html.style.height = html.scrollHeight + 'px';
			clearTimeout(fix_height_check);
		}
	}

	var fix_height_check = setInterval(fix_height, 50);
})();
*/