// Profil //
//var

/* ############################# AJAX ##################################### */
function showProfil(action,profilID){
	var showP_o = new ajaxGo();
	showP_o.open('POST','user_profil.php?a=profil',true);
	showP_o.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	showP_o.send('puid='+profilID);
	showP_o.onreadystatechange = function () {
	if(showP_o.readyState <  4) { document.getElementById('cprofil_content').innerHTML = loader_gif; } 
	if(showP_o.readyState == 4) {
		/* ohne lade grafik */
		var cAusgabe = null;
		cAusgabe = showP_o.responseText;
		document.getElementById('cprofil_content').innerHTML= cAusgabe;
		// gallery menu
		
		}
	}
}