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="">--Inside KBCC (Click to select a link below)--');
document.write('<option value="">--------------------------------------------------------');
document.write('<option value="pressrelease/index.htm">KCC Press Release');
document.write('<option value="siteindex.htm">KCC web site map');
document.write('<option value="open3.htm">Visit our Open House ');
document.write('<option value="classschedule/index.html">Class Schedule');
document.write('<option value="eventCalendar/eventCalendar.htm">Events Calendar');
document.write('<option value="">--------------------------------------------------------');
document.write('<option value="EnrollmentDataProfile/index.htm">Enrollment Data Profile);
document.write('<option value="">--------------------------------------------------------');
document.write('<option value="21century/index.html">21st Century Learning Outcomes Project');
document.write('<option value="contedbi/index.html">Business and Industry Training ');
document.write('<option value="propre/index.html">Project Preview (Web Courses)');
document.write('<option value="http://www.mec.cuny.edu/academic_affairs/science_tech_school/biology/bridge.htm">Bridges 
      to the Baccalaureate Program ');
document.write('<option value="UCVE/index.htm">Universal Center for Virtual Enterprise');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');