var xmlHttp;

function daryosh(r) {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
xmlHttp.onreadystatechange = h;
xmlHttp.open("GET", "r.aspx?p=" +r , true);
xmlHttp.send(null);
}
function h() {
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
//document.getElementById("a1").innerHTML = "ppp"+xmlHttp.responseText ;
}
}
}


function persianmusic(r)
{

var sss=document.getElementById("rt"+r).innerHTML ;
if (sss=="d")
{
document.getElementById("a1").innerHTML = "bayad login shavid" ;
}
else
{
if (sss=="-")
{
document.getElementById("rt"+r).innerHTML = 1 ;
}
else
{
document.getElementById("rt"+r).innerHTML = eval(sss)+1 ;
}

}
daryosh(r) ;
document.getElementById("kk"+r).innerHTML="" ;
}
