<!--
function copyright() {
	searchWin = window.open('http://www.valtnet.com/diritto_autore','Copyright','scrollbars=yes,resizable=yes,width=330,height=500,status=no,location=no,toolbar=no');
}
function foto(str,w,h,didascalia) {
	w+=10;
	h+=10;
	if(typeof didascalia=="undefined" || didascalia=="") didascalia="";
	 else {
	 	didascalia=urlencode(didascalia);
		h=h+40;
	}
	finestra = window.open('visualizza_foto.php?foto='+urlencode(str)+'&didascalia='+didascalia,Math.round(1000*Math.random()).toString(),'scrollbars=no,resizable=no,width='+w+',height='+h+',status=no,location=no,toolbar=no');
}
function urlencode(CODE){
	var plaintext = CODE;

	var SAFECHARS = "0123456789" +					// Numeric
					"ABCDEFGHIJKLMNOPQRSTUVWXYZ" +	// Alphabetic
					"abcdefghijklmnopqrstuvwxyz" +
					"-_.!~*'()’‘";					
	var HEX = "0123456789ABCDEF";
	
	var encoded = "";
	for (var i = 0; i < plaintext.length; i++ ) {
		var ch = plaintext.charAt(i);
	    if (ch == " ") {
		    encoded += "+";				// x-www-urlencoded, rather than %20
		} else if (SAFECHARS.indexOf(ch) != -1) {
		    encoded += ch;
		} else {
		    var charCode = ch.charCodeAt(0);
			if (charCode > 255) {
			    encoded += "+";
			} else {
				encoded += "%";
				encoded += HEX.charAt((charCode >> 4) & 0xF);
				encoded += HEX.charAt(charCode & 0xF);
			}
		}
	} // for

	// VALORE CODIFICATO
	return encoded;
}
function mostradiv(div) {
	if(document.getElementById(div).style.display=="none") document.getElementById(div).style.display="block";
 	 else document.getElementById(div).style.display="none";
}
function menu(m) {
	document.getElementById("m_home").className="td_off";
	document.getElementById("m_viste").className="td_off";
	document.getElementById("m_planimetrie").className="td_off";
	document.getElementById("m_disponibilita").className="td_off";
	document.getElementById("m_lavori").className="td_off";
	document.getElementById("m_contatti").className="td_off";
	document.getElementById("m_ecocase").className="td_off";
	m.className="td_on";
}
function continua() {
	mostradiv('testo_home');
	document.getElementById("link_continua").style.display='none';
}
function cartina_uffici() {
	finestra = window.open('cartina_uffici.htm',Math.round(1000*Math.random()).toString(),'scrollbars=no,resizable=no,width=500,height=400,status=no,location=no,toolbar=no');
}
function cartina_insediamento() {
	finestra = window.open('cartina_insediamento.htm',Math.round(1000*Math.random()).toString(),'scrollbars=no,resizable=no,width=500,height=400,status=no,location=no,toolbar=no');
}
function privacy() {
	finestra = window.open('privacy.php','Privacy','scrollbars=yes,resizable=no,width=400,height=350,status=no,location=no,toolbar=no');
}
//-->
