    //var links = new Array();
    
    function onrow(pid,typ) {
        var rt;
        if (typ == 0) { rt = 'fp';}
        else if (typ == 1) { rt = 'bm'; }
        if ($(rt+pid)) { $(rt+pid).addClassName('ubtdact'); }
    }
    
    function offrow(pid,typ) {
        var rt;
        if (typ == 0) { rt = 'fp';}
        else if (typ == 1) { rt = 'bm'; }
        if ($(rt+pid)) { $(rt+pid).removeClassName('ubtdact'); }
    }
    
    //function clickrow(pid,typ,spid) {
    //    var urlstr = '';
    //    if (typ == 2) { offrow(spid,0); urlstr = '&sb=' + spid }
    //    else { offrow(pid,typ); }
    //    window.location = '/postDetail.cgi?p=' + pid + urlstr;
    //}
    
    function clickpost(pid) { if (links[pid]) { window.location = links[pid]; } }
    

