function loadCx(pag) { 
parent.frameCx.location.href=pag;
}

function loadDx(pag) { 
parent.frameDx.location.href=pag;
}

function showFiglio (codice,imgName) {
			
	altro_el = document.getElementById(codice).style; 
	//spanName = document.getElementById(imgName).style;
	
	if(altro_el.display == "") {
		altro_el.display = "none" ;
		//spanName.backgroundImage = "url(img/pallino.gif)" ;
		spanName.backgroundRepeat = "no-repeat" ;
	}else {
		altro_el.display = "" ;
		//spanName.backgroundImage = "url(img/pallino.gif)" ;
		spanName.backgroundRepeat = "no-repeat" ;
	}
}

function dettaglio(titolo,foto_big){
	i1 = new Image;
	i1.src = foto_big;
	html = "<head>";
	html = html + "<title>" + titolo + "</title>";
	html = html + "</head>";
	html = html + "<BODY LEFTMARGIN='0' MARGINWIDTH='0' TOPMARGIN='0' MARGINHEIGHT='0'>";
	html = html + "<CENTER>";
	html = html + "<IMG SRC=" + foto_big + " BORDER=0 NAME=foto_grande onLoad=window.resizeTo(document.foto_grande.width+12,document.foto_grande.height+30)>";
	html = html + "</CENTER>";
	html = html + "</BODY>";
	
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=auto,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}


function open_dettaglio(ID,center){
  w = 600 ;
  h = 400 ; 	
  l=(screen.width - w) / 2;
  t=(screen.height - h) /2;
  wnd = window.open("dettaglio_in.php?ID="+ID+"&center="+center,"","fullscreen=0,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+",left="+l+",top="+t);
  wnd.focus();	
}
