function apriFinestra(url,w,h){
	t = 10
	l = 10
	win = window.open('immagini/schede/'+url,'fname','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=yes,top=10,left=10,width='+w+',height='+h+', left='+l+', top='+t);
}

function vediFoto(url,w,h){
	t = 10
	l = 10
	win = window.open(url,'fname','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=yes,top=10,left=10,width='+w+',height='+h+', left='+l+', top='+t);
}
	
function randomc(){
	var a = 1+Math.round(Math.random()*7)+'.jpg';
	var s = 'background-image: url(immagini/generali/'+a+');';
	var immagine="url(immagini/generali/"+a+")"; 
	document.getElementById('cgrande').style.backgroundImage=immagine;
	document.getElementById('cgrande').style.backgroundPosition="center";
}
function nm(idoggetto,stato){
	document.getElementById(idoggetto).style.display=stato;
}
function viewdesc(idoggetto){ // appare la descrizione del menu laterale
	document.getElementById(idoggetto).style.display="block"; //onmouseover
	
}
function dropdesc(idoggetto){// scompare la descrizione (onmouseout)
	document.getElementById(idoggetto).style.display="none";
}


