function doSelect() { // FUNZIONE CHE GESTISCE LA REDIREZIONE AUTOMATICA DELLO SHORTCUT var urldestinazione= document.getElementById('quick-link').value; document.location.href = urldestinazione; } function visualizzaMappa() { // FUNZIONE CHE GESTISCE LA VISUALIZZAZIONE DEL TRAGITTO CON MAPPE VIA MICHELIN var url="http://www.viamichelin.it/viamichelin/ita/dyn/controller/ItiWGPerformPage?reinit=1&strStartCityCountry=612&strStartAddress="+document.itinerario.FROM.value+"&strStartMerged=pisa&strDestCityCountry=612&strDestAddress="+document.itinerario.TO.value+"&strDestMerged=pisa&image2.x=38&image2.y=11&strVehicle=2" window.open(url); } function resizeText(multiplier) { // FUNZIONE CHE GESTISCE LE DIMENSIONI DEL CARATTERE if (document.body.style.fontSize == "") { document.body.style.fontSize = "1.0em"; } document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em"; }