<HEAD> <script language="JavaScript">
function go(){
if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value !=
"none") {
location =
document.selecter.select1.options[document.selecter.select1.selectedIndex].value
}
}
</script>
</HEAD><BODY>
<script language="JavaScript">
document.write('<CENTER>');
document.write('<form name="selecter"><select name="select1"
size=1>');
document.write('<option value=none>Wybierz link..');
document.write('<option value=none>--------------------');
document.write('<option value="http://www.microsoft.pl">Microsoft');
document.write('<option value="http://www.netscape.com">Netscape');
document.write('<option value="http://www.kki.net.pl/startrek/">Fanklub
StarTreka');
document.write('<option value="http://sapkowski.fantasy.art.pl/">Strona o
tw≤rczo£ci A.Sapkowskiego');
document.write('</select>');
document.write('</BR>');
document.write('<INPUT TYPE="button" VALUE="Skocz"
onclick="go()">');
document.write('</form>');
document.write('</CENTER>');
</script>
</BODY> |