function formHandler(){var URL = document.form.site.options[document.form.site.selectedIndex].value;window.location.href = URL;}document.write('<form name="form">');document.write('<select name="site" size=1>');document.write('<option value="">Quick Links');document.write('<option value="index.html">Home');document.write('<option value="rss-reader-features.html">Features');document.write('<option value="rss-reader-contact.html">Contact Us');document.write('<option value="rss-reader-about.html">About Us');document.write('<option value="rss-reader-support.html">Tech Support');document.write('<option value="rsscontact.php">Download');document.write('<option value="link.html">Favorite Links');document.write('</select>');document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');document.write('</form>');