function pobierz()
{
  document.getElementById("linki").innerHTML='<p><img style="margin-left:150px;padding-bottom:10px;" src="images/loading.gif" alt="wczytuję..."></p>';

  if (window.XMLHttpRequest) {
    xmlhttp=new XMLHttpRequest();
  }
  else {
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }

  xmlhttp.open("POST","index",true);
  xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");  
  xmlhttp.send("link="+document.getElementById('link').value);
  
  xmlhttp.onreadystatechange=function() 
  {
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
      document.getElementById("linki").innerHTML=xmlhttp.responseText;
    }
  }
  
  document.getElementById('link').focus();
  
  return false;
}

function wstaw(s){
  document.getElementById("wrzuta_mp3_link").href = s;
}

var linkos = '';
function freedown_append(type,name,link,title)
{
  linkos = linkos + "<li><a href="+link+">Pobierz | "+type+"</a>"+name+"</li>";
}      
function freedown_done(){
  document.getElementById("youtube_links").innerHTML = "<ul>"+linkos+"</ul>";
}


