function controlla(immagine, maxW, maxH)
{
		if (immagine.width>maxW)
			immagine.width=maxW;
}

function vaiLink(url) {
	window.location = url;
}

function confermaClick(testo) {
	return confirm(testo);
}

// APRO IL MENU ...
function apri(tenda)
{
    document.getElementById(tenda).style.visibility = "Visible";
}
// CHIUDO IL MENU ...
function chiudi(tenda)
{
    document.getElementById(tenda).style.visibility = "Hidden";
}

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

function aprifoto(url,altezza,larghezza) 
{ 
	aa=window.open(url,'nome','height='+(altezza)+',width='+(larghezza)+',scrollbars=yes'); 
}