


function apri(parametro) {

numeroFoto = parametro;

document.getElementById('pannello').style.display = "block";

document.getElementById('galleria').style.display = "block";



codice = "<embed src='http://win.antiracket.it/swf/galleryCoraggioAngela2.swf?foto=" + numeroFoto + "' width='700' height='500' scale='ShowAll' play='true' loop='false' menu='false' wmode='transparent' quality='1' type='application/x-shockwave-flash'></embed>";

box=document.getElementById("galleria");

if(box){
box.innerHTML=codice;
}

}



function chiudi() {


document.getElementById('pannello').style.display = "none";

document.getElementById('galleria').style.display = "none";

}



