/* Script per l'apertura di una finestra indipendente */
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

/* 
	Link deve essere
	<A href="#" onClick="MM_openBrWindow('dl185.htm','01','scrollbars=yes,width=400,height=500,resizable=no')">D.L. 185</A> 
	Fine script per l'apertura di una finestra indipendente 
*/

// FUNZIONE CHE CONTROLLA TUTTI I CAMPI CONTRASSEGNATI CON REQUIRED
function checkrequired(which)
{
	var pass=true

	if (document.Contatti.checkprivacy.checked) {

	} else {
		alert("Attenzione\n La PRIVACY deve essere accettata");
		return false;
	}
		
	if (document.images)
	{
		for (i=0;i<which.length;i++)
		{
			var tempobj=which.elements[i]
			var nome_campo = tempobj.name
			if (tempobj.id.substring(0,8)=="required")
			{
				if (((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1))
				{
					pass=false
					break
				}
			}
		}
	}

	if (!pass)
	{
		alert("Attenzione\n E' necessario compilare il campo obbligatorio: " + nome_campo.toUpperCase())
		return false
	} else {
	return true
	}
}
// FINE CONTROLLO DEI CAMPI