function greybox_close(id) {
    $("greybox" + id).style.display = "none";
}

function greybox(id) {
    $("greybox" + id).style.display = "block";
}

