<!DOCTYPE html>
<html>
<title>Меню в форме </TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<BODY>
<script type="text/javascript">
/**************
Меню в форме
Copyright (c) 2003 SE@RCHER (www.03www.su)
В библиотеке SE@RCHER собраны более 1300 кодов javascript, динамических стилей и много других полезных примочек
**************/
document.write('<form><p><font color="#000FFF"><strong><big>Меню:</big></strong></font>');
document.write('<select name="sel" size="1" onchange="top.location.href = this.options[this.selectedIndex].value;" style="background-color: rgb(0,0,0); color: rgb(255,255,0); font-weight: bolder">');
document.write('<option value="#">Перейти:</option>');
document.write('<option value="1.htm">Линк 1</option>');
document.write('<option value="2.htm">Линк 2</option>');
document.write('<option value="3.htm">Линк 3</option>');
document.write('</select> </p></div></form>');
</script>
</BODY></HTML>