window.onload = function() 
{
	var s  = document.getElementById('sec1');
	var st = document.getElementById('stxt1');
	var x = st.offsetHeight;
	s.style.height = x+'px';
	resizeFW();
}
window.onresize = function()
{
	resizeFW();
}