// JavaScript Document

function show_detail_condition() {
    document.getElementById("detail_image_opened").style.display = "block";
    document.getElementById("detail_image_closed").style.display = "none";
    document.getElementById("detail_condition").style.display = "block";
    document.getElementById("detail_condition_closed").style.display = "none";
}

function hide_detail_condition() {
    document.getElementById("detail_image_opened").style.display = "none";
    document.getElementById("detail_image_closed").style.display = "block";
    document.getElementById("detail_condition").style.display = "none";
    document.getElementById("detail_condition_closed").style.display = "block";
}