// Memberfunktionen

// öffnet Profil in neuem Fenster
function showProfil(showuser) {
	window.open("/member/en/profil1.php?showuser="+showuser,"_blank","width=750,height=750,scrollbars=1,resizable=1");
}

// öffnet Profileditor
var zgprofiledit;
function editProfil() {
	if (zgprofiledit && !zgprofiledit.closed) {
		zgprofiledit.close();
	}
	zgprofiledit=window.open("/member/en/profil1edit.php","zgProfilEdit","width=750,height=800,scrollbars=1,resizable=1");
}

// Setzt Freundschaft und Spur im Profilwindow
function frset(love) {
	document.frform.love.value=love;
	document.frform.submit();
}
function spset(e) {
	document.spform.emotic.value=e;
	document.spform.submit();
}

// Gibt Nachricht zu Comwindow aus
function comconnected() {
	//document.getElementById('comsuccess').style.display="block";
	$("#comsuccess").fadeIn(500);
	$("#comsuccess").mouseover(function(){ $("#comsuccess").fadeOut(500) });
}
function comfailed() {
	//document.getElementById('comerror').style.display="block";
	$("#comerror").fadeIn(500);
	$("#comerror").click(function(){ $("#comerror").fadeOut(500) });
}
