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 size=1 style="border:0; background:#0B3B73; font-size:9px; color:white">');
document.write('<option value="reviews">Write a Review');
document.write('<option value="reviews/all.html">List Reviews');
document.write('<option value="">----:|Movies|:----');
document.write('<option value="reviews/startrek.html">Star Trek');
document.write('<option value="reviews/perros.html">Amores Perros');
document.write('<option value="reviews/others.html">The Others');
document.write('<option value="reviews/apes.html">Planet of the Apes');
document.write('<option value="reviews/jp3.html">Jurassic Park 3');
document.write('<option value="reviews/evolution.html">Evolution');
document.write('<option value="reviews/13days.html">13 Days');
document.write('<option value="reviews/hifi.html">High Fidelity');
document.write('<option value="reviews/bedazzled.html">Bedazzled');
document.write('<option value="reviews/cell.html">The Cell');
document.write('<option value="reviews/fightclub.html">Fight Club');
document.write('<option value="reviews/loser.html">Loser');
document.write('<option value="reviews/xmen.html">X-Men');
document.write('<option value="reviews/gattaca.html">GATTACA');
document.write('<option value="reviews/liesbeneath.html">What Lies Beneath');
document.write('<option value="reviews/perfectstorm.html">Perfect Storm');
document.write('<option value="reviews/mmirene.html">Me, Myself, and Irene');
document.write('<option value="reviews/shaft.html">Shaft');
document.write('<option value="">---:|Music|:----');
document.write('<option value="reviews/thursday.html">Thursday');
document.write('<option value="reviews/godspeed.html">Godspeed... ');
document.write('<option value="reviews/silver.html">Silverchair');
document.write('<option value="reviews/foo2.html">Foo Fighters 1X1');
document.write('<option value="reviews/molly.html">Flogging Molly');
document.write('<option value="reviews/mxpx.html">MxPx');
document.write('<option value="reviews/theclash.html">The Clash');
document.write('<option value="reviews/radiohead.html">Radiohead');
document.write('<option value="reviews/tool.html">Tool');
document.write('<option value="reviews/foofighters.html">Foo Fighters');
document.write('<option value="reviews/incubus.html">Incubus');
document.write('<option value="">----:|Other|:----');
document.write('<option value="reviews/wordbags.html">Wordbags');
document.write('<option value="reviews/cooties.html">Cooties');
document.write('<option value="reviews/hurley.html">Liz Hurley');
document.write('<option value="reviews/otterpops.html">Otter Pops');
document.write('<option value="reviews/rossreview.html">Ross Review');
document.write('<option value="reviews/abroller.html">Ab Wheel');
document.write('<option value="reviews/todd.html">Todd');
document.write('<option value="reviews/apathy.html">Apathy');
document.write('<option value="reviews/bayball.html">Bay Area Baseball');
document.write('<option value="reviews/easymac.html">Easy Mac');
document.write('<option value="reviews/kraft.html">Kraft Singles');
document.write('<option value="#">----------------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');


