function selectUrlWin(form) {
	if(form.url.selectedIndex != 0) {
		var win_url = form.url.options[form.url.selectedIndex].value;
		var win = window.open(win_url, "", "scrollbars=yes,resizable=yes,toolbar=yes,directories=yes,status=yes,menubar=yes,location=yes");
		win.focus();
	}
}

document.write("<table border='0' cellpadding='0' cellspacing='0'> ");
document.write("  <tr> ");
document.write("    <td class='main_link'> ");
document.write("    <form name='air'> ");
document.write("    <SELECT class='dropdown_081' NAME='url' onchange='selectUrlWin( this.form )' style='font-size:8pt' size='1' width:'136'> ");
document.write("    <OPTION VALUE=0 selected>>> Flight Info.</OPTION> ");
document.write("    <!--OPTION VALUE=#>--------------------</OPTION--> ");
document.write("    <!--OPTION>--------------------</OPTION--> ");
document.write("    <option VALUE=http://www.koreanair.com>Korean Air</option> ");
document.write("    <option value=http://us.flyasiana.com>Asiana Airlines</option> ");
document.write("    <option value=http://www.airport.co.kr/eng/dba/airport/gimhae/index.html>GimHae Airport</option> ");
document.write("    </SELECT> ");
document.write("    </td></form> ");
document.write("  </tr> ");
document.write("</table> ");

