/************************************/
/* FUNZIONE PER INGRANDIRE IMMAGINI */
/************************************/

function newWindow(image) {
	mapwindow = window.open(image, "granmappa", "width=770, height=490")
	mapwindow.focus()
	}


/************************************************/
/* FUNZIONE PER CONTROLLARE I CAMPI OBBLIGATORI */
/************************************************/

function checkrequired(which){
var pass=true
if (document.images){
	for (i=0;i<which.length;i++){
		var tempobj=which.elements[i]
		if (tempobj.name.substring(0,3)=="req"){
			if((tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1)){
			pass=false
			break
			}
		}
	}
}
if (!pass){
alert("Non hai compilato correttamente il form. Alcune informazioni non sono state inserite. Clicca su OK e verifica l'errore")
return false
}
else
return true
}




