// JavaScript Document
//
//++++++++++ リンク　ドロップダウン化処理
function nav(sel) {
	if (sel.selectedIndex == -1) return;
	var opt = sel.options[sel.selectedIndex];
	//alert(opt.value)
	if (opt && opt.value){
		//alert(opt.value)
		//別ウィンで開く
		window.open(opt.value);
	}
} 
//++++++++++ /リンク　ドロップダウン化処理



