/*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 onChange="javascript:formHandler()">');
document.write('<option value="">Select an Artist</option>');
document.write('<option value="">-- BANDS --</option>');
document.write('<option value="/adonaiani/index.html">Andonai &amp; I</option>');
document.write('<option value="/cletus/index.html">Cletus and the Burners</option>');
document.write('<option value="/doubleirie/index.html">Double Irie</option>');
document.write('<option value="/compilations/index.html">I-Town Compilations</option>');
document.write('<option value="/iy/index.html">IY</option>');
document.write('<option value="/jbb/index.html">John Browns Body</option>');
document.write('<option value="/jsan/index.html">Jsan and the Analogue Sons</option>');
document.write('<option value="/oculus/index.html">Oculus</option>');
document.write('<option value="/pasofino/index.html">Paso Fino</option>');
document.write('<option value="/plasticnebraska/index.html">Plastic Nebraska</option>');
document.write('<option value="/silas/index.html">Silas</option>');
document.write('<option value="/srb/index.html">Sim Redmond Band</option>');
document.write('<option value="/circled/index.html">Speer-Specker-Henrie</option>');
document.write('<option value="/sunnyweather/index.html">Sunny Weather</option>');
document.write('<option value="/thethins/index.html">The Thins</option>');
document.write('<option value="/thousandsofone/index.html">Thousands of One</option>');
document.write('<option value="/tmss/index.html">Tom Mank and Sera Smolen</option>');
document.write('<option value="/uht/index.html">Urban Horse Thieves</option>');
document.write('<option value="/10ftganjaplant/index.html">10 Ft Ganja Plant</option>');
document.write('<option value="">-- SOLO ARTISTS --</option>');
document.write('<option value="/crowgreenspun/index.html">Crow Greenspun</option>');
document.write('<option value="/davidgould/index.html">David Gould</option>');
document.write('<option value="/eliotmartin/index.html">Eliot Martin</option>');
document.write('<option value="/gabrieltavares/index.html">Gabriel Tavares</option>');
document.write('<option value="/hankroberts/index.html">Hank Roberts</option>');
document.write('<option value="/kevinkinsella/index.html">Kevin Kinsella</option>');
document.write('<option value="/pattiwitten/index.html">Patti Witten</option>');
document.write('<option value="/seankobuk/index.html">Sean Kobuk</option>');
document.write('<option value="/simredmond/index.html">Sim Redmond</option>');
document.write('<option value="/trevormacdonald/index.html">Trevor MacDonald</option>');
document.write('<option value="/uniit/index.html">Uniit</option>');
document.write('</select>');
document.write('</form>');*/