// script by tom (20.04.03)
// fill array with movies
var aMovies = new Array();

// composes path to movie and loads it into current window
function getmovie(sMovie){
var nMovieID = parseInt(sMovie.substr(9,2));
with(window.document.forms[0].elements["dbox_movie"+nMovieID]){
var sPathExtension = options[selectedIndex].value;
}
var sPath2Movie = aMovies[nMovieID-1]+sPathExtension;
location.href = sPath2Movie;
}

