function LinkSelect(form, sel) {
adrs = sel.options[sel.selectedIndex].value;
if (adrs == "newpane") {
    window.open("http://www.keshigomude.com/","subWin");
} else if (adrs != "-" ) {
    top.location.href = adrs;
}
}

