/* FUNCIONS javascript per a dhtml de la pagina home del site
   -------------------------------------------------------- */

function regenerate()
{
	window.location.reload()
}

function regenerate2()
{
	if (document.layers)
	{
		appear()
		setTimeout("window.onresize=regenerate",450)
	}
}


function changetext(whichcontent)
{
	if (document.all||document.getElementById)
	{
	   cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
	   cross_el.innerHTML='<font face="Verdana, Arial, Tahoma, Lucida Sans Unicode, Kids, Futura Lt BT, EwieD, Comic Sans MS, Helvetica, sans-serif"><small>'+whichcontent+'</small><font>'
	}
	else 
           if (document.layers)
	   {
		document.d1.document.d2.document.write('<font face="Verdana, Arial, Tahoma, Lucida Sans Unicode, Kids, Futura Lt BT, EwieD, Comic Sans MS, Helvetica, sans-serif">'+whichcontent+'</font>')
		document.d1.document.d2.document.close()
	   }
}


function appear()
{
	document.d1.visibility='show'
}

window.onload=regenerate2

