function formHandler(form){
 var URL = document.form.site.options[document.form.site.selectedIndex].value; 
window.location.href = URL; } document.write('<select name="site" style="height:20px; width:140px; hspace:0; vspace:0;">'); 
document.write('<option value="">n a v i g a t i o n'); 
document.write('<option value="index.htm">&nbsp;m.a.d index');
document.write('<option value="faq.htm">&nbsp;f.a.q.');
document.write('<option value="http://livejournal.com/community/m_a_d_awards">&nbsp;livejournal');
document.write('<option value="categories.htm">&nbsp;categories');
document.write('<option value="voting.htm">&nbsp;voting');    
document.write('<option value="winners.htm">&nbsp;winners');    
document.write('<option value="links.htm">&nbsp;links');
document.write('<option value="site.htm">&nbsp;site & disclaimer'); 
document.write('<option value="feedback.htm">&nbsp;contact us'); 
document.write('</select>'); 
document.write('&nbsp;<input type="button" value="go" onClick="javascript:formHandler()">'); 
document.write('</form>'); 
