/*code für HTML Page
function mailMal(){
	var first = "info";
	var second = "weisbrod.ch";
	mailCode(first, second);
}

*/

function mailCode(first, second){
	window.location = 'mailto:' +first+ '@' +second;
}
