function apriBig(pag) {
  win = window.open(pag,'win','toolbar=0, menubar=0, scrollbars=0, resizable=0, width=1010, height=506, left=10, top=10');
  win.focus();
}


function apri(pag) {
  win = window.open(pag,'win','toolbar=0, menubar=0, scrollbars=1, resizable=0, width=820, height=500, left=10, top=10');
  win.focus();
}

function apriO(pag) {
  win = window.open(pag,'win','toolbar=0, menubar=0, scrollbars=0, resizable=0, width=800, height=500, left=10, top=10');
  win.focus();
}

function apriV(pag) {
  win = window.open(pag,'win','toolbar=0, menubar=0, scrollbars=0, resizable=0, width=330, height=500, left=10, top=10');
  win.focus();
}

function apriRad(pag,width,height) {
  win = window.open(pag,'win','toolbar=0, menubar=0, scrollbars=0, resizable=0, width='+width+', height='+height+', left=0, top=0');
  win.focus();
}


function controlloFormContattaci(){
	thisForm=document.contattaci;
	
	if(thisForm.nome.value==''){
		alert("Inserire il Nome");
		thisForm.nome.focus();
		return;
	}
	if(thisForm.cognome.value==''){
		alert("Inserire il Cognome");
		thisForm.cognome.focus();
		return;
	}
	if(thisForm.email.value==''){
		alert("Inserire l'email");
		thisForm.email.focus();
		return;
	}
	if(thisForm.privacy.checked == false){
		alert("Bisogna accettare le condizioni sulla privacy per proseguire");
		thisForm.privacy.focus();
		return;
	}
	thisForm.submit();
}
