function openClose(id){
	if((document.getElementById(id)).style.display=="inline"){
		(document.getElementById(id)).style.display="none";
	//	(document.getElementById(id+"Up")).style.display="inline";
	//	(document.getElementById(id+"Down")).style.display="none";
	}else{
		(document.getElementById(id)).style.display="inline";
		//(document.getElementById(id+"Up")).style.display="none";
		//(document.getElementById(id+"Down")).style.display="inline";
	}
}

function getPopup(url,name,style){
	if (window.showModalDialog) {
		var newWindow = window.open(url,window,style);
	} else {
		var newWindow = window.open(url,name,style);
	}
}

function getFile(url){
	var newWindow = window.open(url,"allegato","");
}
function enlargePic(img){
	img.className="button_155x18";
}
function normalPic(img){
		img.className="button_100x18";
}

function selezionaTutto(){
	var lista_checkbox = document.getElementsByTagName("input");
	for(i=0; i < lista_checkbox.length; i++){
		if(lista_checkbox.item(i).name=="mappa"){
	 		lista_checkbox.item(i).checked=(document.all('checked')).value;
		}
	}
	if(document.all('checked').value=="checked"){
		document.all('checked').value="";
	}else{
		document.all('checked').value="checked";
	}
}

function apriMappa(url){
	
	var lista_checkbox = document.getElementsByTagName("input");
	var str = "";
	for(i=0; i < lista_checkbox.length; i++){
		if(lista_checkbox.item(i).name=="mappa" && lista_checkbox.item(i).checked==true){
			//str =str+ lista_checkbox.item(i).id.substring("8")+"@"; old
			str =str+ "CodiciSIA=" + lista_checkbox.item(i).id.substring("8")+"&";
	 		
	 		
	 		//str =str+ lista_checkbox.item(i).id.substring("8")+",";	
	 		//ext=1&CodiciSIA=96.4.1.0
		}
	}
	if(str!=""){
		
		str= str.substring("0",str.length-1);
		
		window.open(url+str,"_self");
		
	}else{
		alert("Per aprire la/le mappe, selezionare la/le checkbox corrispondenti");
	}
}

function apriMappaSingola(url){
	window.open(url,"_self");
}

