<!--

function openURLa()
{ 
selInd1 = document.formularz.zestawa.selectedIndex;
goURL = document.formularz.zestawa.options[selInd1].value;
location.href = goURL; 
}

document.writeln('<form NAME="formularz">');

document.writeln('<SELECT NAME="zestawa" SIZE="1" onChange="openURLa()">');
document.writeln('<option SELECTED VALUE="../index.html">Archiwum</option>');
document.writeln('<option VALUE="../01/index.html">1 - styczeń 1998</option>');
document.writeln('<option VALUE="../02/index.html">2 - marzec 1998</option>');
document.writeln('<option VALUE="../03/index.html">3 - maj 1998</option>');
document.writeln('<option VALUE="../04/index.html">4 - lipiec 1998</option>');
document.writeln('<option VALUE="../05/index.html">5 - wrzesień 1998</option>');
document.writeln('<option VALUE="../06/index.html">6 - listopad 1998</option>');

document.writeln('<option VALUE="../07/index.html">7 - styczeń 1999</option>');
document.writeln('<option VALUE="../08/index.html">8 - czerwiec 1999</option>');

document.writeln('<option VALUE="../09/index.html">9 - styczeń 2000</option>');
document.writeln('<option VALUE="../10/index.html">10 - lipiec 2000</option>');

document.writeln('<option VALUE="../11/index.html">11 - styczeń 2001</option>');
document.writeln('<option VALUE="../12/index.html">12 - maj 2001</option>');
document.writeln('<option VALUE="../13/index.html">13 - sierpień 2001</option>');

document.writeln('<option VALUE="../14/index.html">14 - maj 2002</option>');

document.writeln('<option VALUE="../15/index.html">15 - styczeń 2003</option>');
document.writeln('<option VALUE="../16/index.html">16 - lipiec 2003</option>');

document.writeln('<option VALUE="../17/index.html">17 - styczeń 2004</option>');
document.writeln('<option VALUE="../18/index.html">18 - lipiec 2004</option>');

document.writeln('</select>');


document.writeln('</form>');

// -->