// POPUP
var Fenster = null;
function popup(meineSeite,meinName,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	Fenster = window.open(meineSeite,meinName,settings)
}
// SPAM-SICHERHEIT
function email(name, domain, tld)
{
	var mail = name + "@" + domain + "." + tld;
	var link = "<a href='mailto:" + name + "@" + domain + "." + tld + "'>" + mail + "</a>";
	document.write(link);
}
// DIV auf- und zumachen
function show(div)
{
	if(document.getElementById(div).style.display == "none")
	{
		document.getElementById(div).style.display = "block";
	}
	else
	{
		document.getElementById(div).style.display = "none";
	}
}