
function schnipp_vol(the_prename, the_surname, the_plaintext) {
	var xname = the_prename;
	var xvorname = the_surname;
	var xendung = 'vol.be.ch';
	if(!the_plaintext) {
		document.write('<a class="email_button" href="mailto:' + xvorname + '.' + xname + '@' + xendung + '">');
		document.write('<img height="8px" width="14px" src="/images/content/icons/email.png" alt="" />Email</a>');
	} else {
		document.write('<a href="mailto:' + xvorname + '.' + xname + '@' + xendung + '">');
		document.write('<img height="8px" width="14px" src="/images/content/icons/email.png" alt="" /> ' + xvorname + '.' + xname + '@' + xendung + '</a>');
	}
}

function schnipp(the_address, the_name, the_plaintext) {
	var xname = the_name;
	var xendung = the_address;
	if(!the_plaintext) {
		document.write('<a class="email_button" href="mailto:' + xname + '@' + xendung + '">');
		document.write('<img height="8px" width="14px" src="/images/content/icons/email.png" alt="" />Email</a>');
	} else {
		document.write('<a href="mailto:' + xname + '@' + xendung + '">');
		document.write('<img height="8px" width="14px" src="/images/content/icons/email.png" alt="" /> ' + xname + '@' + xendung + '</a>');
	}
}

