function vediImg(foto, descrizione) {
	document.getElementById('photo').src = "ui/images/photos/" + foto;
	document.getElementById('photo').alt = descrizione;
	document.getElementById('photo').title = descrizione;
	document.getElementById('fotodesc').innerHTML = "<p>" + descrizione + "</p>";
}

function checkForm()
{
     // Variabili associate ai campi del forms[0]
     var nome = document.forms[0].name.value;
     var email = document.forms[0].email.value;
     var comments = document.forms[0].comments.value;
     // Espressione regolare dell'email
     var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
        //Effettua il controllo sul campo NOME
        if ((nome == "") || (nome == "undefined")) {
           alert("Il campo Nome č obbligatorio.");
           document.forms[0].name.focus();
           return false;
        } else if (!email_reg_exp.test(email) || (email == "") || (email == "undefined")) {
           alert("Inserire un indirizzo email corretto.");
           document.forms[0].email.select();
           return false;
        }
        //Effettua il controllo sul campo COMMENTO
		else if ((comments == "") || (comments == "undefined") || (comments.indexOf("Inserisci qui il tuo commento") != (-1))) {
           alert("Scrivi due parole al GB2001 Team, non si puņ inserire la scritta predefinita.");
           document.forms[0].commento.focus();
           return false;
        }
        //INVIA IL forms[0]
        else {
           document.forms[0].submit();
        }
}

function impostaTarget() {
	for (var i=0; i<=document.links.lenght; i++) {
		if (document.links[i].className == "nuovo") {
			document.links[i].target = "_blank";
		}
	}
}

window.onload = function() {
	impostaTarget();
}