var xmlhttp;

function loadalbum(url,id) 
{
 
	xmlhttp=null;
	if (window.XMLHttpRequest)
	{// code for Firefox, Opera, IE7, etc.
		xmlhttp=new XMLHttpRequest();
	}
	else if (window.ActiveXObject)
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	if (xmlhttp!=null)
	{
	
		var fullurl = url+"?id="+id;
		
		xmlhttp.open("GET", fullurl, true);
		xmlhttp.send(null);
		xmlhttp.onreadystatechange = changeid;
	
	}
	
	
	
}


function changeid()
{
	document.getElementById('load_album').innerHTML ="<img src='./images/ajax-load.gif' alt='load'/>";
	if (xmlhttp.readyState == 4) 
	{
    	
		var result=xmlhttp.responseText;
		document.getElementById('load_album').innerHTML =xmlhttp.responseText;
		
		
	}
}


