<!--
//mostra elemento
function mostra(id){
if (document.getElementById){
document.getElementById(id).style.display = 'block';
}
}

function nascondi(id){
if (document.getElementById){
document.getElementById(id).style.display = 'none';
}
}

function showPic(where,which) { 
	if (document.getElementById) { 
		document.getElementById(where).src = which.href; 
	} 
}


//-->