| <!-- TWO STEPS TO INSTALL PULLDOWN MENU: 
   1. Paste the coding into the HEAD of your HTML document 
   2. Add the last code into the BODY of your HTML document --> 
   <!-- STEP ONE: Copy this code into the HEAD of your HTML document
--> 
   <HEAD> 
   <SCRIPT LANGUAGE="JavaScript"> 
   <!-- Original: Alex Tu <boudha1@hotmail.com> --> 
   <!-- Web Site: http://www.oocities.org/MadisonAvenue/4368
--> 
   <!-- This script and many more are available free online at
--> 
   <!-- The JavaScript Source!! http://javascript.internet.com
--> 
   <!-- Begin 
   function formHandler(){ 
   var URL = document.form.site.options[document.form.site.selectedIndex].value; 
   window.location.href = URL; 
   // End --> 
   } 
   </SCRIPT> 
   </HEAD> 
   <!-- STEP TWO: Paste this code into the BODY of your HTML
document --> 
   <BODY> 
   <CENTER> 
   <FORM name = "form"> 
   <SELECT NAME="site" SIZE=1 onChange ="formHandler()"> 
   <OPTION VALUE="">Go to.... 
   <OPTION VALUE="http://www.yahoo.com">Yahoo 
   <OPTION VALUE="http://www.metacrawler.com">Metacrawler 
   <OPTION VALUE="http://www.altavista.digital.com">Altavista 
   <OPTION VALUE="http://www.webcrawler.com">Webcrawler 
   <OPTION VALUE="http://www.lycos.com">Lycos 
   <OPTION VALUE="http://javascript.internet.com">JavaScript
Source 
   </SELECT></FORM> 
   </CENTER> 
   <!-- Script Size: 1.20 KB --> 
    |