d=document;
function po(no,na)
{
d.write('<option value="'+ no +'">'+ na +'</option>');
}
function pokedex()
{
d.write('<style>');
d.write('#pokedex {');
d.write('font-family: "Arial";');
d.write('font-size: 10pt;');
d.write('}');
d.write('.DEK {POSITION:absolute;VISIBILITY:hidden;Z-INDEX:200;}');
d.write('</style>');
e1 = '/pokedexdp/pokedex';
e2 = '.html';
d.write('<form name="go_plant" method="post"><center>');
d.write('<select id="pokedex" name="keuze1" onChange="location.href = e1 + document.go_plant.keuze1.options[document.go_plant.keuze1.selectedIndex].value + e2" size="1">');
d.write('<option selected>Plant</option>');
po('001','Bulbasaur');
po('002','Ivysaur');
po('003','Venusaur');
po('043','Oddish');
po('044','Gloom');
po('045','Vileplume');
po('046','Paras');
po('047','Parasect');
po('069','Bellsprout');
po('070','Weepinbell');
po('071','Victreebel');
po('102','Exeggcute');
po('103','Exeggutor');
po('114','Tangela');
po('152','Chikorita');
po('153','Bayleef');
po('154','Meganium');
po('182','Bellossom');
po('187','Hoppip');
po('188','Skiploom');
po('189','Jumpluff');
po('191','Sunkern');
po('192','Sunflora');
po('270','Lotad');
po('271','Lombre');
po('272','Ludicolo');
po('273','Seedot');
po('274','Nuzleaf');
po('275','Shiftry');
po('285','Shroomish');
po('286','Breloom');
po('315','Roselia');
po('331','Cacnea');
po('332','Cacturne');
po('357','Tropius');
po('387','Turtwig');
po('388','Grotle');
po('389','Torterra');
po('407','Roserade');
po('420','Cherubi');
po('421','Cherrim');
po('455','Carnivine');
po('459','Snover');
po('460','Abomasnow');
po('465','Tangrowth');
po('132','Ditto');
d.write('</select>');
d.write('</center></form>');
}

