function kontakt(x)
{
	var a="home";
	var b="@";
	var c="tobiworld";
	var d=".de";

	if (x==1) 
	{
		location.href="mailto:"+a+b+c+d;
	}

	else if (x==0) 
	{
		window.status="Email an: "+a+b+c+d;
	}

	else  	
	{
		window.status="";
	}
}
