function ricercaHotel(element)
{
	var option = element[element.selectedIndex].value;
	if(option != '')
		location.href = pathHttp + 'ita/ricerca/hotel-' + option + '-stelle/index.html';
}

//contaclick
function conta(id_attivita, tipologia)
{
	var jsel = document.createElement('SCRIPT');
	jsel.type = 'text/javascript';
	jsel.src = 'http://admin.abc.sm/register_visit.php?id_attivita=' + id_attivita + '&tipologia=' + tipologia + '&no_cache=' + (Math.random() * 1000);
	window.document.body.appendChild (jsel);
}

function init() {
	document.getElementById('Landing').value = TGetCookieSite('Landing');
	document.getElementById('Provenienza').value = TGetCookieSite('Provenienza');
}

window.onload = init; 

//conto alla rovescia per la pagina 404
function countredirect()
{
    if(currentsecond != 1)
    {
        currentsecond -= 1;
        document.redirect.redirect2.value = currentsecond;
    }
    else
    {
        window.location = targetURL;
        return;
    }
    
    setTimeout("countredirect()", 1000);
}
