
// function email(x,y,z) {
 function email() {

	// Notloesung
	z= 'info';
	y= 'strub-boden';
	x= 'de';

	a=z; b='@'; c=y; d=x;

	document.location.href='mailto:'+a+b+c+'.'+d;
 }
