function openPop(form) {


var url=(form.dir.options[form.dir.selectedIndex].value);
if (url == "") { alert('Seleziona una struttura'); } else {
myWindow = window.open(url, 'myWindow', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no,width=245,height=220'); }
}
// -->
function Validatore_Form(theForm){
if (theForm.nome.value =="")
			{
			alert("Inserire il nome")
			theForm.nome.focus();
			return (false);
			}
if (theForm.email.value =="")
                {
                alert("Inserire l'indirizzo e-mail")
                theForm.email.focus();
                return (false);
                }
if (theForm.telefono.value =="")
                {
                alert("Inserire il numero di telefono")
                theForm.telefono.focus();
                return (false);
                }
if (theForm.richiesta.value =="")
                {
                alert("Inserire una breve richiesta")
                theForm.richiesta.focus();
                return (false);
                }
				return (true);
}