function getProfile(id)
	{
		xmlhttp=null;
		// Set up the requestxmlhttp=null
		// code for Mozilla, etc.
		if (window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}
		// code for IE
		else if (window.ActiveXObject){xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
		if (xmlhttp!=null)
			{
				xmlhttp.onreadystatechange= function(){document.getElementById('profile').innerHTML=xmlhttp.responseText;};
				xmlhttp.open("GET","/media/pages/crew/"+id+".php",true);
				xmlhttp.send(null);
			}
	}