//:: /typo3conf/ext/archivetoc/pi1/static/script.js
//===============================================================
function loadEvents(){if(!$('archivetoc-year'))return;$('archivetoc-year').addEvent('change',function(){var choice=$('archivetoc-year').options[this.selectedIndex].value;loadEditions(choice,-1);});$('archivetoc-edition').addEvent('change',function(){this.form.submit();});}
function loadYears(selected){if(!$('archivetoc-year'))return;yearsArray.each(function(y,i){if(y==selected){$('archivetoc-year').options[$('archivetoc-year').options.length]=new Option(y,y,false,true);}else{$('archivetoc-year').options[$('archivetoc-year').options.length]=new Option(y,y,false,false);}});loadEvents();}
function loadEditions(year,selected){if(!$('archivetoc-edition'))return;$('archivetoc-edition').empty();if(selected==-1){$('archivetoc-edition').options[0]=new Option(choose,0,false,true);}else{$('archivetoc-edition').options[0]=new Option(choose,0,false,false);}
$('archivetoc-edition').options[0].disabled='disabled';editionsArray[year].each(function(e,i){if(e==selected){$('archivetoc-edition').options[$('archivetoc-edition').options.length]=new Option(e,e,false,true);}else{$('archivetoc-edition').options[$('archivetoc-edition').options.length]=new Option(e,e,false,false);}});loadEvents();}

