<!-- 
var selezionato = ''
function stampa_flash(percorso, width, height) 
{ 
document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+width+"\" height=\""+height+"\" >"); 
document.write("<param name=\"movie\" value=\""+percorso+"\">"); 
document.write("<param name=\"wmode\" value=\"transparent\"> "); 
document.write("<embed src=\""+percorso+"\" quality=\"high\" width="+width+" height="+height+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\">"); 
document.write("</embed>"); 
document.write("</object>"); 
}

function chiudi_popup(quale) {
	document.getElementById(quale).innerHTML = '';
	document.getElementById(quale).style.display = "none";
}
function apri_popup(quale) {
	if (selezionato != '') {
		document.getElementById(selezionato).innerHTML = '';
		document.getElementById(selezionato).style.display ="none";
	}
	selezionato = quale;
	document.getElementById(quale).innerHTML = eval("txtpopup_" + quale);
	document.getElementById(quale).style.display ="block";
	//document.location.href="#top";
	window.scrollTo(0,285);
}
function apri_immagine(quale) {
	window.open('popup_immagine.asp?img=' + quale + '','','scrollbars=yes,width=200,height=200');
	void(0);
}
function calcolatrice() {
	document.location.href="http://www.sava.it/finanziamento.asp";
}
function calcolatrice1() {
	//window.open('calcolatrice.asp','','scrollbars=yes,resizable=yes,width=910,height=500');
	window.open('comingsoon.asp','','scrollbars=no,resizable=no,width=100,height=50');
}
function comingsoon() {
	window.open('comingsoon.asp','','scrollbars=no,resizable=no,width=100,height=50');
}
--> 