function formFitter()
{
	try
	{
		var de = document.documentElement;
		var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
		if (document.documentElement && typeof document.documentElement.style.maxHeight!="undefined")
		{
			h=h-32;
		}
		else
		{
			h=h-5;
		}
		//eval("document.getElementById('contenedor').style.height='"+(h)+"px'")
		//eval("document.getElementById('menu').style.height='"+(h)+"px'")
		eval("document.getElementById('submenu').style.height='"+(h)+"px'")
		eval("document.getElementById('contingut').style.height='"+(h)+"px'")
	}
	catch(e){}
}
function addLoadEvent(func) {   
	var oldonload = window.onload;
	if (typeof window.onload != 'function'){
		window.onload = func;
	} else {
		window.onload = function(){
		oldonload();
		func();
		}
	}
}
addLoadEvent(formFitter);