/* ---------------------------------------------------------------------------------*  ChangeTopUrl()*  Funzione che effettua il redirect a tutta pagina tramite una select*  richiamare le funzione in questo modo:*  onchange="ChangeTopUrl('NomeForm','NomeSelect')"*/function ChangeTopUrl(theForm,theSelect) {   var i = eval('document.' + theForm + '.' + theSelect + '.selectedIndex')   var strURL = eval('document.' + theForm + '.' + theSelect + '.options[' + i + '].value')   if (strURL != "#") {      top.location = strURL   }}