// Navigator for "I grandi dell'Arte"

var absPath = "/tca/minisite/arte/artgallery/";

var myNav = new Array(
"bea_index.html, Beato Angelico",
"bot_index.html, Botticelli",
"cez_index.html, Cézanne",
"cou_index.html, Courbet",
"del_index.html, Delacroix",
"deg_index.html, Degas",
"dur_index.html, Dürer",
"ger_index.html, Géricault",
"gio_index.html, Giotto",
"goy_index.html, Goya",
"mas_index.html, Masaccio",
"mic_index.html, Michelangelo",
"mon_index.html, Monet",
"pie_index.html, P. della Francesca",
"raf_index.html, Raffaello",
"ren_index.html, Renoir",
"vel_index.html, Velazquez");


function goUrl(form) {
        var myindex=form.navigator.selectedIndex
        window.location.href = absPath + (form.navigator.options[myindex].value);
}

function fillNav(formElementName) {
  var navList = eval('document.' + formElementName);
  var option;
  for (var i = 1; i <= myNav.length; i++) {
    option = myNav[i - 1].split(", ");
    navList.options[i] = new Option(option[1], option[0]);
  }
}



// <form name="myform">
// <select name="navigator" onChange="goUrl(form)">
// <option value="" selected>- Scegli l'artista </option>
// </select>
// </form>
//
// <script language="javascript">
// <!--
//   fillNav('myform.navigator');
// //-->
// </script>

