function acilsusam(a){
if (a=="1"){
shown=(document.getElementById('yorumblock').style.display=='block');
if(!shown){document.getElementById('yorumblock').style.display='block';document.getElementById('mesajblock').style.display='none';}
else{document.getElementById('yorumblock').style.display='none';
} return false; }
if (a=="2"){
shown=(document.getElementById('mesajblock').style.display=='block');
if(!shown){document.getElementById('mesajblock').style.display='block';document.getElementById('yorumblock').style.display='none'}
else{document.getElementById('mesajblock').style.display='none';
} return false; }

if (a=="3"){
shown=(document.getElementById('yorumlar').style.display=='block');
if(!shown){document.getElementById('yorumlar').style.display='block';document.getElementById('tutliste').style.display='none';document.getElementById('son5').style.display='none'}
else{document.getElementById('yorumlar').style.display='none';
} return false; }
if (a=="4"){
shown=(document.getElementById('tutliste').style.display=='block');
if(!shown){document.getElementById('tutliste').style.display='block';document.getElementById('yorumlar').style.display='none';document.getElementById('son5').style.display='none'}
else{document.getElementById('tutliste').style.display='none';
} return false; }
if (a=="5"){
shown=(document.getElementById('son5').style.display=='block');
if(!shown){document.getElementById('son5').style.display='block';document.getElementById('tutliste').style.display='none';document.getElementById('yorumlar').style.display='none'}
else{document.getElementById('son5').style.display='none';
} return false; }
}

function sayfaDegistirSiir(sayfa,idsi){
	$('#yorumlar').html('<img src="/img/sloading.gif" alt="" />');
    $.ajax({
    type:'POST',
    url:'/siir/_siiryorumlari.asp?sayfa='+sayfa+'&id='+idsi+'&rnd=' +Math.random(),
	data:{},
    success:function(ajaxCevap){
            $('#yorumlar').html(ajaxCevap);
    }
    })
}