var bookmarkurl="http://www.nomedelsito.com";
var bookmarktitle="Nome del sito";
function preferiti(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function register_ok() {
	if (document.register.nick_utente.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo nickname.')
	return false
	}
	else if (document.register.pwd_utente.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo passord.')
	return false
	}	
	else if (document.register.pwd_utente.value != document.register.pwd1_utente.value) {
	alert('ATTENZIONE !!! - Le due password non sono uguali.')
	return false
	}
	else if (document.register.mail_utente.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo mail.')
	return false
	}
	var trova = document.register.mail_utente.value.indexOf("@"); // Ricerca un carattere nella stringa
	if (trova == (-1))   {
        // Se il carattere ricercato è presente lancia un messaggio positivo
        alert('ATTENZIONE !!! - Il campo mail non è corretto.');
    return false
	}
}

function annuncio_ok() {
	if (document.form_add.id_cat01.value == '%') {
	alert('ATTENZIONE !!! - E necessario scegliere una categoria.')
	return false
	}
	else if (document.form_add.id_cat02.value == '%') {
	alert('ATTENZIONE !!! - E necessario scegliere una sottocategoria.')
	return false
	}
	else if (document.form_add.titolo_annuncio.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo titolo.')
	return false
	}
	else if (document.form_add.testo_annuncio.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo testo.')
	return false
	}
	else if (document.form_add.mail_annuncio.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo mail.')
	return false
	}
	else if (!document.form_add.condizioni.checked) {
	alert('ATTENZIONE !!! - E necessario accettare le condizioni.')
	return false
	}
}


function video_ok() {
	if (document.video_form.video.value == '') {
	alert('ATTENZIONE !!! - E necessario compilare il campo nome video.')
	return false
	}
	else if (document.video_form.file_download.value == '') {
	alert('ATTENZIONE !!! - E necessario selezionare un file.')
	return false
	}
}



function confirmClose() {
    if (confirm("Sei sicuro di voler eliminare il file?")) {
       location.href="function_ann.php?action=edit_filevideo&id_video=" + document.video_form.id_video.value + "&file_video=" + document.video_form.file_video.value;
    }
    else
      alert("Eliminazione annullata."); {
    }
}

function search_ok() {
	if (document.search.parola.value ==''  ) {
	alert('ATTENZIONE !!! - E necessario compilare il campo di ricerca.')
	return false
	}
}

function news_ok() {
	if (document.newsletter.mail_nl.value ==''  ) {
	alert('ATTENZIONE !!! - E necessario immettere un indirizzo mail.')
	return false
	}
	var trova = document.newsletter.mail_nl.value.indexOf("@"); // Ricerca un carattere nella stringa
	if (trova == (-1))   {
        // Se il carattere ricercato è presente lancia un messaggio positivo
        alert('ATTENZIONE !!! - Il campo mail non è corretto.');
    return false
	}
	
}

function info_ok() {
	if (document.informazioni.nickname.value == '') {
	alert('ATTENZIONE !!! - E necessario compilare il campo nickname.')
	return false
	} else if (document.informazioni.email.value == '') {
	alert('ATTENZIONE !!! - E necessario compilare il campo mail.')
	return false
	} else if (document.informazioni.messaggio.value == '') {
	alert('ATTENZIONE !!! - E necessario compilare il campo messaggio.')
	return false
	}
}

function foto_ok() {
	if (document.foto.img1.value== '') {
	alert('ATTENZIONE !!! - E necessario compilare il campo Foto 01.')
	return false
	}	
	
}