Файл: 3020.ru/design/js/muz/muz.js
Строк: 39
<?php
function simptom_my_music(id)
{
$.ajax({
url: '/simptom/my_music/simptom.php?id='+id,
cache: true,
success: function(html)
{
$("#simptom_my_music_"+id).html(html);
}
});
}
function simptom_my_music_golos(id, type)
{
$.ajax({
url: '/simptom/my_music/simptom_golos.php?id='+id+'&type='+type,
cache: true,
success: function(html)
{
$("#simptom_my_music_golos").html(html);
}
});
}
function sim_show_download()
{
if (document.getElementById('sim_show_download').style.display == 'block')
{
document.getElementById('sim_show_download').style.display = 'none';
document.getElementById('sim_show_download_td').style.display = 'block';
document.getElementById('sim_show_download_tz').style.display = 'none';
} else {
document.getElementById('sim_show_download_td').style.display = 'none';
document.getElementById('sim_show_download_tz').style.display = 'block';
document.getElementById('sim_show_download').style.display = 'block';
}
}
?>