if(document.getElementById && document.createElement){
document.write('<style type="text/css">*.toggle{display:none}</style>');
window.onload=function(){
    Attiva("js_filmcorrelati","Mostra altri...","Nascondi altri...");
    }
}

function Attiva(id,s1,s2){
var el=document.getElementById(id);
if (el != null)
{
el.style.display="none";
var c=document.createElement("div");
var link=document.createElement("a");
link.href="#";
link.appendChild(document.createTextNode(s1));
link.onclick=function(){
    link.firstChild.nodeValue = (link.firstChild.nodeValue==s1) ? s2 : s1;
    el.style.display=(el.style.display=="none") ? "block" : "none";
    return(false);
    }
c.appendChild(link);
el.parentNode.insertBefore(c,el);
}
}
				
function showYear(idToShow) {
	var hiddenYearId = document.getElementById('hiddenYearId').value;

	if (document.getElementById && !document.all) {
		hza = document.getElementById(hiddenYearId);
		if (hza)
			hza.style.display = 'none';
			
		hza = document.getElementById(idToShow);
		if (hza)
			hza.style.display = 'block';
			
		document.getElementById('hiddenYearId').value = idToShow;
    }
}
