function show_block(id) {
    var e = document.getElementById(id);
    e.style.display = "block";
}
function hide_block(id) {
    var e = document.getElementById(id);
    e.style.display = "none";
}
function showhide_blocks(sid,hid) {
    hide_block(hid);
    show_block(sid);
}
