v_pesyl  = "";
v_pesyl += "アイウエオカキクケコサシスセソタチツテトナニヌネノ";
v_pesyl += "ハヒフヘホマミムメモヤ　ユ　ヨラリルレロワ　ヲ　ン";
v_pelng  = v_pesyl.length;
function SetStatus(key) { window.status=key; return(true); }
function syllabary()
    {
    for(ix1 = 0;ix1 < v_pelng;ix1 += 5)
        {
        document.writeln("    <tr>");
        for(ix2 = 0;ix2 < 5;ix2++)
            {
            pos = ix1 + ix2;
            vls = v_pesyl.substring(pos,pos + 1);
            flg = (vls == "　")? false: true;
            document.write("        <td nowrap bgcolor=\"#FFF0F0\" align=center><tt><font size=3>");
            if(flg) document.write("<a href=\"JavaScript:jinbutsu(",pos + 1,")\" onmouseover=\"return(SetStatus('",vls,"'));\" onmouseout=\"return(SetStatus(''));\" style=\"display: block\">");
            document.write("<b>",vls,"</b>");
            if(flg) document.write("</a>");
            document.writeln("</font></tt></td>");
            }
        document.writeln("        </tr>");
        }
    }

function jinbutsu(pos)
    {
    var vls = document.MyForm.NamKey.value;
    if(pos > 0 && pos < v_pelng + 1) vls = v_pesyl.substring(pos - 1,pos);
    if(vls == "") vls = v_pesyl.substring(0,1);
    document.MyForm.SchViw.value = vls + "行";
    document.MyForm.NamKey.value = vls;
    document.MyForm.TypKey.value = "";
    document.MyForm.action = "jinbutsulist.aspx";
    document.MyForm.submit();
    }
function bunya(key,nam)
    {
    document.MyForm.SchViw.value = nam;
    document.MyForm.NamKey.value = "";
    document.MyForm.TypKey.value = key;
    document.MyForm.action = "jinbutsulist.aspx";
    document.MyForm.submit();
    }
function mokuroku(sno)
    {
    var vls = "";
    if(sno == "") vls = document.MyForm.InputSchKey.value;
    document.MyForm.SchKey.value = vls;
    if(vls != "") document.MyForm.SchViw.value = vls;
    document.MyForm.NamSno.value = sno;
    document.MyForm.ViwPag.value = 1;
    document.MyForm.action = "mokurokulist.aspx";
    document.MyForm.submit();
    }
function mokurokupage(pag)
    {
    document.MyForm.ViwPag.value = pag;
    document.MyForm.action = "mokurokulist.aspx";
    document.MyForm.submit();
    }

