// JavaScript Document

window.onload = function(){
	var Norm 	= 299;
	var Height 	= document.getElementById('Size').scrollHeight;
	
	(Norm > Height) ? '' : document.getElementById('ReSize').style.height = (Height - 120)+'px';
}
