<!--
function moure(nomCapa)
{ 
	if(parseInt(document.getElementById(nomCapa).style.height)<350)
	{
		valor=document.getElementById(nomCapa).style.height; 
		numero=parseInt(valor); 
		numero+=5; 
		document.getElementById(nomCapa).style.height=numero;
		setTimeout("moure('capa')",50)// cada quan s'ha de cridar la funció
	}
	else document.getElementById(nomCapa).style.overflow="auto";
}  
//-->
