// JavaScript Document

var contentTitle="";
var xmlHttp = null;

function changeContent(php, title)
{
	xmlHttp=GetXmlHttpObject();

	contentTitle = title;
	
	if (php.length>0)
	{ 
		var url=php;
		xmlHttp.onreadystatechange=stateChanged2;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}
}

function stateChanged2() 
{ 
	if (xmlHttp.readyState==4)
	{ 
		document.getElementById("content").innerHTML=xmlHttp.responseText;
		document.title = "PERMWHALE - Music Production and Mastering";
	}
}
