function aggiornaBriciole(contenuto,sezione,posizione,pagina)
{
var destinazione = ""
parent.contenuto.location.href=contenuto;
if (posizione=="") 
{
destinazione=("../iframe/briciole.asp?sez=" + sezione)
}
else
{
destinazione=("../iframe/briciole.asp?sez=" + sezione + "&pos=" + posizione)
}

if (pagina!="") 
{
destinazione=(destinazione+ "&pag=" + pagina)
}

parent.briciole.location.href=destinazione;
}


function autofitIframe(id){
 if (!window.opera && !document.mimeType && document.all && document.getElementById){
 parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
 }
 else if(document.getElementById) {
 parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"
 }
 }