function yayindetayGoster(id) {
    if (document.getElementById("yayindetay" + id).style.display == "none") {
        document.getElementById("yayindetay" + id).style.display = "";
        document.getElementById("yayintd" + id).style.backgroundColor = "#e5e5e5";
         
    } else {
    document.getElementById("yayindetay" + id).style.display = "none";
    document.getElementById("yayintd" + id).style.backgroundColor = "white";
    }
    
}
