
function menu_select()
{
	Number = document.series_select.id.selectedIndex;
	Check = document.series_select.id.options[Number].value;
	GotoUrl = "seminar_select.php?id=" + Check;

	if( Check=="TOP" ){
		GotoUrl = "index.html";
	}
	if( Check=="LIST" ){
		GotoUrl = "series_select.html";
	}
	if( Check=="APPLIED" ){
		GotoUrl = "series_select_advanced.html";
	}
	if( Check=="INQUIRY" ){
		GotoUrl = "inquiry.html";
	}

		location.href = GotoUrl;

}

var w = window;
function OpenWin(url) {
	if ((w == window) || w.closed)
	{
		w = open(url,"select", "width=500,height=450,top=50,left=50,scrollbars=no,locationbar=no,resizable=yes");
	}
	else {
		w.focus();
		w = open(url,"select", "width=500,height=450,top=50,left=50,scrollbars=no,locationbar=no,resizable=yes");
	}

}
