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="index.html">North Home');
document.write('<option value="pagelist.html">Page List');
document.write('<option value="stamps.html">Coins & Stamps');
document.write('<option value="stamps2.html">Sub Coins & Stamps');
document.write('<option value="canada.html">Canada');
document.write('<option value="alberta.html">Provinces');
document.write('<option value="flags.html">Canadian Flags');
document.write('<option value="flags2.html">Flags 2');
document.write('<option value="flags3.html">Flags 3');
document.write('<option value="backgrounds.html">Backgrounds');
document.write('<option value="backgrounds2.html">Backgrounds 2');
document.write('<option value="backgrounds3.html">Backgrounds 3');
document.write('<option value="graphics.html">Graphics');
document.write('<option value="graphics2.html">Graphics 2');
document.write('<option value="graphics3.html">Graphics 3');
document.write('<option value="graphics4.html">Graphics 4');
document.write('<option value="sites.html">Canadian Sites');
document.write('<option value="logos.html">Coat of Arms');
document.write('<option value="links.html">Links');
document.write('<option value="promote.html">Promote');
document.write('<option value="stuff.html">Other Stuff');
document.write('<option value="stuff2.html">Other Stuff 2');
document.write('<option value="awards.html">Awards');
document.write('<option value="awards2.html">Awards 2');
document.write('<option value="awards3.html">Awards 3');
document.write('<option value="water.html">Applet');
document.write('<option value="pg1.html">More Applet`s');
document.write('<option value="christmas.html">Christmas');
document.write('<option value="christmas2.html">Sub Christmas');
document.write('<option value="rings.html">Web Rings');
document.write('<option value="procanclub.html">Canada Club');
document.write('<option value="memberlist.html">Club Sites,Join');




document.write('</select>  ');

document.write('<input type=button value="GO TO" onClick="javascript:formHandler()">');
document.write('</form>');