function popup(obj, id) {
    var elm = document.getElementById(id);
    elm.style.display='block';
    elm.style.position='absolute';
    /* 吹き出しの横軸を設定 */
    elm.style.left = this.x + "px";
    /* 吹き出しの縦軸を設定, 吹き出し自体の高さを引いて設定 */
    elm.style.top = obj.offsetTop+55 + "px";
}

function pop() {
 /* 吹き出しの横軸を設定 */
    style.left = this.x + "px";
    /* 吹き出しの縦軸を設定, 吹き出し自体の高さを引いて設定 */
    style.top = obj.offsetTop+55 + "px";
}

function popdown(id) {
    document.getElementById(id).style.display='none';
}

function popup2(obj, id) {
    var elm = document.getElementById(id);
    elm.style.display='block';
    elm.style.position='absolute';
    /* 吹き出しの横軸を設定 */
    elm.style.left = this.x + "px";
    /* 吹き出しの縦軸を設定, 吹き出し自体の高さを引いて設定 */
    elm.style.top = obj.offsetTop+130 + "px";
}


function popup3(obj, id) {
    var elm = document.getElementById(id);
    elm.style.display='block';
    elm.style.position='absolute';
    /* 吹き出しの横軸を設定 */
    elm.style.left = this.x + "px";
    /* 吹き出しの縦軸を設定, 吹き出し自体の高さを引いて設定 */
    elm.style.top = obj.offsetTop+220 + "px";
}

