function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
if (document.form.site.selectedIndex != 0)
	window.location.href = URL;
}

if (!menu_color) { var menu_color = '#CC9900' } // set default color here

document.write('<table border="0" width="100%"><tr><td bgcolor="');
document.write(menu_color)
document.write('" align="center" valign="middle"><BR>');
document.write('<form name="form">');
document.write('<select name="site" size=1 onChange="javascript:formHandler()">');
document.write('<option value="">Other FIDM Links... ');
document.write('<option value="http://fidm.com/about/index.html">About FIDM');
document.write('<option value="http://www.fidm.com/admissions/tuition/financial-aid/index.html">Financial Aid');
document.write('<option value="http://fidm.com/academics/index.html">FIDM Majors');
document.write('<option value="http://fidm.com/resources/career-center/index.html">Career Development Center');
document.write('<option value="http://fidm.com/about/faq/index.html">FIDM FAQ');
document.write('</select>');
//document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
document.write('</td></tr></table>');