// JavaScript Document
// pulldown menu script //

function LinkSelect(form, sel)
{
    adrs = sel.options[sel.selectedIndex].value;
    if ((adrs == "annai/kojin/index.htm")
     || (adrs == "annai/kojin/index.htm")
     || (adrs == "annai/company/index.htm"))
    {
        window.open(adrs, "new_window", "");
    }
    else if (adrs != "-" )
    {
        parent.location.href = adrs;
    }
}