﻿function open_close_li (Sender)
{
    var id = Sender.id + "_";
    if (document.all.item(id).style.display == "none") document.all.item(id).style.display = "block";
    else document.all.item(id).style.display = "none";

    return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
function cursor_hand (Sender)
{
    Sender.style.cursor = "hand";

    return 0;
}