function hideEl(myid) {
    document.getElementById(myid).setAttribute('style', 'display:none;', 0);
    document.getElementById(myid).style.display = 'none';
}

function showEl(myid) {
    document.getElementById(myid).setAttribute('style', 'display:inline;', 0);
    document.getElementById(myid).style.display = 'inline';
}

function changeElBox(changeid) {
    if(document.getElementById(changeid).style.display=="inline") {
        hideEl(changeid);
        window.setTimeout("printMessage('ellink','&#8595; show')", 300);
    } else {
        showEl(changeid);
        window.setTimeout("printMessage('ellink','&#8593; hide')", 300);
    }
}