function show( item ) {
    var obj = document.getElementById( item );
    var lnk = document.getElementById( 'a_' + item );
    obj.style.display = 'block';
//    lnk.className = 'close';
//    lnk.innerHTML = 'bezár';
    lnk.href = 'javascript:hide("' + item + '");';
    window.focus() ;
}

function hide( item ) {
    var obj = document.getElementById( item );
    var lnk = document.getElementById( 'a_' + item );
    obj.style.display = "none";
//    lnk.className = 'expand';
//    lnk.innerHTML = 'megnyit';
    lnk.href = 'javascript:show("' + item + '");';
    window.focus() ;
}


