function aprichiudi( targetId ){
    if( document.getElementById ){
	target = document.getElementById(targetId);
	if( target.style.display == "block" ){
	    target.style.display = "none";
	}
	else{
	    target.style.display = "block";
	}
    }
}

function openVideo(url){
    finestra = 'video';
    aa = window.open(url, finestra, 'height=300, width=370,toolbar=0, location=0, status=1,menubar=0,scrollbars=1,resizable=0,left=100, top=100') ;
    aa.focus();
}

function openSfoglia(url){
  finestra = 'AbsFire';
  aa = window.open(url,finestra,'width=820,height=760,toolbar=no, location=no,status=0,menubar=0,resizable=0');
  aa.focus();
}

