function gallery(str)
{
var son = window.open(str,'blulab','scrollbars=no,resizable=no,width=603,height=501,status=no,location=no,toolbar=no, menubar=no');
son.focus();
}

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

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