function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form" class=form>');
document.write('<select name="site" size=1 onChange="javascript:formHandler()">');
document.write('<option value="#">Media QuickLinks');
document.write('<option value="#">-------------------------------');
document.write('<option value="http://www.atlanticskies.com/discus/messages/2/2.html?985289955">Announcements');
document.write('<option value="press_releases.html">Press Releases');
document.write('<option value="oops.html">Online Press Kit');
document.write('<option value="oops.html">Photo Gallery');
document.write('<option value="#">-------------------------------');
document.write('<option value="hanger.html">Aircraft Hangar');
document.write('<option value="schedule.html">Flight Schedule');
document.write('<option value="http://www.atlanticskies.com/hbp_index.html">The Heartbreaker Project');
document.write('</select>');
document.write('</form>');