function playlistadd(id) {
var xmlhttp = getXmlHttp()
var stroka = document.getElementById("pladd");
xmlhttp.open('GET', 'http://zaycevmp3.net/pl.php?mp3='+id, false);
xmlhttp.send(null);
if(xmlhttp.status == 200) {
  stroka.innerHTML='<font color=green>днаюбкемн!</font>'; 
}
}



function getXmlHttp(){
  var xmlhttp;
  try {
    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
	
      xmlhttp = false;
    }
  }
  if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
    xmlhttp = new XMLHttpRequest();
  }
  return xmlhttp;
}

