function retrieve_profile(id) {
	var url = "/admin/profile.php?id=" + id;
	new Ajax.Updater('associate_profile', url, {asynchronous:true});
	document.getElementById('associate_profile').style.display = 'block';
}

function hide_profile() {
    document.getElementById('associate_profile').style.display = 'none';
}