function profil(user){
document.location.href=host+"blog/"+user+"/";

//document.location.href="profil.php?action=profil&profilid="+user+"&sid="+sid;

}

function options(user){
$("#backend").load(host+"plugins/profil/profil.php",{"action":"options","user":user},function(){
	/*$('#overlay').fadeIn(1);
    $('#overlay').fadeTo(1,0.5);
    	
	$("#overlaycontentholder").fadeIn(1);
	$("#overlaycontentholder").animate({width:"550px"},150);
	//$("#overlaycontentholder").animate({},150);*/
 document.getElementById('backend').style.display='block';
	
	
});
}
function profil_changeoptions(type,out,user){
$("#"+out).load(host+"plugins/profil/profil.php",{"action":"changeoptions","type":type,"user":user});
}

function saveprofiloptions(user){
	vorname=document.getElementById('optionsvornameinput').value;
	nachname=document.getElementById('optionsnachnameinput').value;
	wohnort=document.getElementById('optionswohnortinput').value;
	beruf=document.getElementById('optionsberufinput').value;
	homepage=document.getElementById('optionshomepageinput').value;
	facebook=document.getElementById('optionsfacebookinput').value;
	lastfm=document.getElementById('optionslastfminput').value;
	myspace=document.getElementById('optionsmyspaceinput').value;
	soundcloud=document.getElementById('optionssoundcloudinput').value;
	twitter=document.getElementById('optionstwitterinput').value;
	bio=document.getElementById('optionsuserbio').value;
	avatarlink=document.getElementById('optionsuseravatar').src;
	if(homepage.indexOf('http://')==-1){homepage='http://'+homepage;}
	if(facebook.indexOf('http://')==-1){facebook='http://'+facebook;}
	if(lastfm.indexOf('http://')==-1){lastfm='http://'+lastfm;}
	if(myspace.indexOf('http://')==-1){myspace='http://'+myspace;}
	if(twitter.indexOf('http://')==-1){twitter='http://'+twitter;}
	if(soundcloud.indexOf('http://')==-1){soundcloud='http://'+soundcloud;}
$("#optionstabinhalt").load(host+"plugins/profil/profil.php",{"action":"saveprofiloptions","user":user,"wohnort":wohnort,"avatarlink":avatarlink,"beruf":beruf,"homepage":homepage,"facebook":facebook,"lastfm":lastfm,"myspace":myspace,"soundcloud":soundcloud,"twitter":twitter,"vorname":vorname,"nachname":nachname,"bio":bio});

}
 
function saveprivateoptions(user){
mail=document.getElementById('optionsmailinput').value;
pass=document.getElementById('optionspassinput').value;
jreset=document.getElementById('optionsjresetbox').checked;
news=document.getElementById('optionsnewsbox').checked;

$("#optionstabinhalt").load(host+"plugins/profil/profil.php",{"action":"saveprivateoptions","user":user,"mail":mail,"pass":pass,"jreset":jreset,"news":news});



}

