// JavaScript Document





function nascondi(){
		(document.ricerca_form.prezzomax.value != '') ? document.getElementById('periodo').style.display = "block" : document.getElementById('periodo').style.display = "none";
		document.getElementById('periodo').style.display = "{$visualizza}";
	}
	
function printit(){
	if (NS) {
		window.print() ;
	} 
	else {
		var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
		document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
		WebBrowser1.ExecWB(6, 2);
		WebBrowser1.outerHTML = "";
	}
}

function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG style="border:1px solid black" SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca qui per ingrandire la foto"></A>');
	}
	
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html><head><title>Image</title></head><body LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER></body></html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	}
function Visualizza_periodo(id,obj){
	if (document.ricerca_form.prezzomax.value != '')
		document.getElementById(id).style.display=(obj) ? 'block':'none';
	else
		document.getElementById(id).style.display=(obj) ? 'none':'block';
}

function ShowAndHide(id1,id2){
	if(document.getElementById){
		el1=document.getElementById(id1);
		el2=document.getElementById(id2);
		if(el1.style.display=="none"){
			el1.style.display="block";
			el2.style.display="none";
		}
		else{
			el1.style.display="none";
			el2.style.display="block";
		}
	}
}
