function verify(frm){

if (frm.name == 'kingkong'){

	ok = 0;
	
	Ctrl = frm.email;
	result = false;
	space_tokens = Ctrl.value.split(" ");
	if (space_tokens.length == 1) {
		at_tokens = Ctrl.value.split("@");
		if (at_tokens.length == 2) {
			if (at_tokens[1].length != 0) {
			   right_dot_tokens = at_tokens[1].split(".");
			   if (right_dot_tokens.length >= 2) {
			   	if (right_dot_tokens[1].length != 0) {
				   result=true;}
				}
			}
		}
	}

	if (frm.nome.value == ""){
		errorString = "Il NOME è obbligatorio";
		alert(errorString);
		frm.nome.focus();
		ok = 1;
	}

	else if (frm.cognome.value == "")
    {
		errorString = "Il COGNOME è obbligatorio";
		alert(errorString);
		frm.cognome.focus();
		ok = 1;
	}

	else if (!result){
		errorString = "Inserisci un'indirizzo E-MAIL valido";
		alert(errorString);
		Ctrl.focus();
		ok = 1;
	}

	else if (!frm.privacy.checked)
    {
		errorString = "L'accettazione del regolamento è necessaria per poter partecipare al gioco";
		alert(errorString);
		ok = 1;
    }

	if (ok == 1)
	   return false;
	
	}
}
function start(winflash, x, y, bar)
{
window.open(winflash,'','scrollbars='+bar+',screenX=150,screenY=50,left=0,top=0,resizable=0,menubar=0,toolbar=0,status=0,width='+x+',height='+y);
}
