function Saluta(tutti)
			{
			  // controllo se devo continuare nella stessa pagina o in un altro frame
			  var results = 'popup';
			  
				var strTipoRicerca = window.document.getElementById('txtTipoSearch').value
				var strDataDal = window.document.getElementById('DDGiornoDAl').value + '/' + window.document.getElementById('DDMeseDAl').value + '/' + window.document.getElementById('DDAnnoDAl').value;
				var strDataAl = window.document.getElementById('DDGiornoAl').value + '/' + window.document.getElementById('DDMeseAl').value + '/' + window.document.getElementById('DDAnnoAl').value;
				var strNumeroPersone = window.document.getElementById('DDPersona').value;
				var strIdAffiliato = window.document.getElementById('txtIdAffiliato').value;
				var strTipoPrenot = window.document.getElementById('DDTipoPrenot').value;
				
				var strURL = "" ;
				var strURL_Loading = "" ;
				var strURL_completo = "" ;
				
				strURL = window.document.getElementById('txtURL').value;
				if (tutti==0)
				{
					strURL=strURL + "DataDal=" + strDataDal;
					strURL=strURL + "&DataAl=" + strDataAl;
					strURL=strURL + "&NumeroPersone=" + strNumeroPersone;
					strURL = strURL + "&IdZona=0";
					strURL = strURL + "&IdRegione=" + window.document.getElementById('DDRegione').value;
					strURL = strURL + "&IdLocalita=" + window.document.getElementById('DDLocalita').value;
					strURL=strURL + "&IdAffiliato=" + strIdAffiliato;
					strURL=strURL + "&TipoPrenot=" + strTipoPrenot;
					strURL=strURL + "&IdOrdine=1";
				}
				else
				{
					strURL="DataDal=" + strDataDal;
					strURL=strURL + "&DataAl=" + strDataAl;
					strURL=strURL + "&NumeroPersone=" + strNumeroPersone;
					strURL=strURL + "&Tutti=1";
					strURL=strURL + "&IdAffiliato=" + strIdAffiliato;
					strURL=strURL + "&IdOrdine=1";
				}
				
				strURL = strURL + "&TipoRicerca=" + strTipoRicerca ;
			  strURL_Loading = "http://service.apartmentsaffiliates.com/server_aff/Loading.aspx?" ;
			  strURL_completo = strURL_Loading + escape(strURL) ;
			  strURL_completo = strURL_completo + "&NumAffLoad=" + strIdAffiliato;
			
			  if (results=='stessa_pagina')
			     window.document.location = strURL_completo ;
			  else
			  {
			    if (results=='iframe')
			      window.document.getElementById('search_result').src = strURL_completo ;
			    else
			      window.open( strURL_completo ,'affiliate','resizable=yes,menubar=no,toolbar=no, scrollbars=yes,locations=no,status=yes,width=800px');
			  }
			  
			}