// JavaScript Document
function news_ok() {
	if (document.form.cat.value == 0) {
	alert('ATTENZIONE !!! - E necessario selezionare una categoria.')
	return false
	}
	else if (document.form.newsletter.value == 0) {
	alert('ATTENZIONE !!! - E necessario introdurre un indirizzo mail.')
	return false
	}
	var pos = 0;
	var c=0;
	var i = document.form.newsletter.value;
	pos = i.indexOf("@");
	if (pos  =='-1') {
	alert('ATTENZIONE !!! - La mail inserita non e\' corretta.')
	return false
	}	
}

function contatti_ok() {
	if (document.form_contatti.nome.value == "") {
	alert('ATTENZIONE !!! - E necessario compilare il campo nome.')
	return false
	}
	else if (document.form_contatti.cognome.value == "") {
	alert('ATTENZIONE !!! - E necessario compilare il campo cognome.')
	return false
	}
	else if (document.form_contatti.telefono.value == "") {
	alert('ATTENZIONE !!! - E necessario compilare il campo telefono.')
	return false
	}	
	else if (document.form_contatti.email.value == "") {
	alert('ATTENZIONE !!! - E necessario compilare il campo e-mail.')
	return false
	}		
	else if (document.form_contatti.tipologia_viaggio.value == 0) {
	alert('ATTENZIONE !!! - E necessario selezionare una tipologia viaggio.')
	return false
	}	
	else if (!document.form_contatti.privacy.checked) {
	alert('ATTENZIONE !!! - E necessario autorizzare  il trattamento dei propri dati personali.')
	return false
	}	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
