(function(limit)
{
	var onLoad = function(e)
	{
		var el = document.getElementById("MIN_HEIGHT");
		var style = (el.currentStyle)?el.currentStyle:document.defaultView.getComputedStyle(el, '');
		var height = Number(style.height.replace("px",""));
		
		if(!height||height<limit) el.style.height = limit+"px";
	}
	if(window.addEventListener) window.addEventListener("load", onLoad, false);
	else if(window.attachEvent) window.attachEvent("onload", onLoad);
	//
})(200);
