function flash(path,wid,hei){
document.write('<object type="application/x-shockwave-flash" data="'+path+'" width="'+wid+'" height="'+hei+'"><param name="movie" value="'+path+'" /></object>');
}

function switchimage(foto,ww,hh){
	div=document.getElementById("solo-immagine");
	img=div.childNodes[0];
	div.style.width=ww;
	div.style.height=hh;
	div.innerHTML='<img src="'+foto+'" width="'+ww+'" height="'+hh+'"  alt="" />';
	//img.src=foto;
	//img.width=ww;
	//img.height=hh;
}