document.onmousemove=move;
var curx  = 0;
var cury  = 0;
function move(e){
		if (document.all) {
			curx = event.clientX + document.body.scrollLeft
			cury = event.clientY + document.body.scrollTop
			winW = document.body.offsetWidth;
		} else {
			curx = e.pageX
			cury = e.pageY
			winW = window.innerWidth;
		}
		if (curx+300>winW){
			curx=winW-325;
		}
}
function pop_testo(id, livello){
	//testi e una var globale
	livello.innerHTML  = testi[id];
}
function over(id){
	livello               = document.getElementById("aiutoricerca");
	livello.style.top     = cury+20;
	livello.style.left    = curx;
	livello.style.display = "block";

	pop_testo(id, livello);
}
function out(id){
	document.getElementById("aiutoricerca").style.display="none";
}
function clickzona(id){
	document.myform.spiaggia.selectedIndex=(id-1);
}
