function show(id) { document.getElementById(id).style.display = 'block'; } function hide(id) { document.getElementById(id).style.display = 'none'; } function change_image_url(id, url) { document.getElementById(id).src = url; }