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='bus'> ");
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>>> Bus Info.</OPTION> ");
document.write("    <option value=http://www.kobus.co.kr/eng/index.jsp>Express Bus Assn.</option> ");
document.write("    </SELECT> ");
document.write("    </td></form> ");
document.write("  </tr> ");
document.write("</table> ");

