var xmlHttp

function showAlbumInfo(str)
{ 
return;
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="/about/albumInfo.jsp";
url=url+"?id="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChangedAlbum;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChangedAlbum() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("album_info").innerHTML=xmlHttp.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}

function albumInfo(show) {
	document.getElementById("info").style.display="none";
	document.getElementById("credits").style.display="none";
	document.getElementById("liner_notes").style.display="none";
	document.getElementById("articles").style.display="none";
	document.getElementById("comments").style.display="none";
	
	document.getElementById(show).style.display="block";
}