function div_ac(yazi) {
antalya_div = document.getElementById('antalya_res');
alanya_div = document.getElementById('alanya');
side_div = document.getElementById('side');
istanbul_div = document.getElementById('istanbul');

if (yazi == 'antalya') {
antalya_div.style.display = "block";
alanya_div.style.display = "none";
side_div.style.display = "none";
istanbul_div.style.display = "none";


} else if (yazi == 'alanya') {

antalya_div.style.display = "none";
alanya_div.style.display = "block";
side_div.style.display = "none";
istanbul_div.style.display = "none";


} else if (yazi == 'side') {

antalya_div.style.display = "none";
alanya_div.style.display = "none";
side_div.style.display = "block";
istanbul_div.style.display = "none";


} else if (yazi == 'istanbul') {

antalya_div.style.display = "none";
alanya_div.style.display = "none";
side_div.style.display = "none";
istanbul_div.style.display = "block";


}
} 

