//E-Mail-Verschlüsselung
function build_mail(user,domain,suffix,cla){
document.write('<a href="'+'mailto:'+user+'@'+domain+'.'+suffix+'" class="'+cla+'" onfocus="this.blur()">'+user+'@'+domain+'.'+suffix+'</a>');
}

//Popup öffnen
function NeuesFenster(datei,name,breite,hoehe,x,y,center,loc,men,stat,scroll,res)
{
	if (center == 1)
	{
		x = (screen.width-breite)/2;
		y = (screen.height-hoehe)/2;
	}
	settings='width='+breite+',height='+hoehe+',left='+x+',top='+y+',location='+loc+',menubar='+men+',status='+stat+',scrollbars='+scroll+',resizable='+res+'';
	newWindow=window.open(datei,name,settings);
}

