function id2element(id)
{
    if (!document.getElementById)
        return;

    if (document.all)
        return eval("document.all." + id);
    else
        return document.getElementById(id);
}

function toggle_msg(id) {
    id2element("msg" + id).style.display = (id2element("msg" + id).style.display == "none" ? "block" : "none");
}
// 