function loadPagina(ind) {
	
	if(ind == "") {
	
	} else if(ind.indexOf("http://") > -1 ) {
		//document.location.href = ind;
		window.open(ind);
	} else {
		if(!(ind.charAt(0) == '/')) {
			ind = "/" + ind;
		}		
		if(ind.indexOf("pagine") < 0  && ind.indexOf("eventi") < 0 && ind.indexOf("vetrina") < 0 
		&& ind.indexOf("index.do") < 0 ) {
			ind = "/pagine" + ind;
		}		
		ind = ind + "&mappa=true";
		document.location.href = ind;
	}	
}


function popUp(testo) {

	m_width = "280px";
	m_height = "300px";
	
	testo = testo.replace(/&/g,"%26");
	testo = testo.replace(/%/g,"%25");
	
	
	    args = 'height= ' + m_height 
			+ ' ,width= ' + m_width	
			+ ' ,channelmode= no'
			+ ' ,directories =no'
			+ ' ,fullscreen = no'
			+ ' ,location = no'
			+ ' ,menubar = no'
			+ ' ,resizable = yes'
			+ ' ,scrollbars = no'
			+ ' ,status= no'
			+ ' ,titlebar= yes'
			+ ' ,toolbar = no'; 

		m_URL = "/frontend/ansa.do?testo=" + testo;

		risposta = window.open(m_URL,"",args);
        //alert(m_URL);
}