
function showhideSibling(t) {
    while (t.nodeName != 'BLOCKQUOTE') t = t.nextSibling;
    if (t.style.display=='none') t.style.display = 'block';
    else t.style.display = 'none';
}
