<!--
function cms_ies_collapsable(elemento_id,img_id,img_espandi_src,img_contrai_src)
{
var elemento = document.getElementById(elemento_id);
var img= document.getElementById(img_id);
if(elemento != null){
if(elemento.style.display==''){
elemento.style.display='none';
img.src=img_espandi_src;
}
else{
elemento.style.display='';
img.src=img_contrai_src;
}
}
}

function cms_ies_collapsable_fondino(elemento_id,pulsante_id,classe_espandi,classe_contrai)
{
var elemento = document.getElementById(elemento_id);
var puls= document.getElementById(pulsante_id);
if(elemento != null){
if(elemento.style.display==''){
elemento.style.display='none';
puls.className = classe_espandi;
}
else{
elemento.style.display='';
puls.className = classe_contrai;
}
}
}

function collapse(elemento_id,img_id,img_espandi_src,img_contrai_src)
{
var elemento = document.getElementById(elemento_id);
var img= document.getElementById(img_id);
if(elemento != null){
if(elemento.style.display==''){
elemento.style.display='none';
img.src=img_espandi_src;
}
else{
elemento.style.display='';
img.src=img_contrai_src;
}
}
}
// -->
