//utilizzato nelle pagine con tariffe_gas per aprire pdf da tendina
function ambiti(combo) {
	var thebase = document.getElementsByTagName("base")[0].href; 
  var chosenoption=combo.options[combo.selectedIndex]
	if (chosenoption.value!="nothing"){
		window.open(thebase+chosenoption.value, "", "");
	}
} 

function urlUnescape(urlToUnescape) {
  return urlToUnescape.replace(/&amp;/g,'&');
}
