// OUTLOOK WEITERLEITUNG
function post(name) {
	var c="59049:15552";var ac=c.split(":");var s="";for(i=1;i<ac.length;++i){s+=String.fromCharCode(Number(ac[i])/Math.sqrt(Number(ac[0])));}
	// mailto: + hans + at + xy.ch
	locationstring = 'mai' + 'lto:' + name + s + '%6C%69%6D%65%64%72%6F%70%2E%63%68';
	window.location.replace(locationstring);
}

// OUTLOOK WEITERLEITUNG MIT ?CC
function postcc(name) {
	var c="59049:15552";var ac=c.split(":");var s="";for(i=1;i<ac.length;++i){s+=String.fromCharCode(Number(ac[i])/Math.sqrt(Number(ac[0])));}
	// mailto: + hans + at + xy.ch + ? + cc= +
	locationstring = 'mai' + 'lto:' + name + s + '%6C%69%6D%65%64%72%6F%70%2E%63%68' + '?' + 'cc' + '=' + name + s + '%62%72%61%69%6E%6B%69%6C%6C%65%72%2E%63%6F%6D';
	window.location.replace(locationstring);
}

// OUTLOOK WEITERLEITUNG MIT ?CC &SUBJECT
function postccsubject(name, subject) {
	var c="59049:15552";var ac=c.split(":");var s="";for(i=1;i<ac.length;++i){s+=String.fromCharCode(Number(ac[i])/Math.sqrt(Number(ac[0])));}
	// mailto: + hans + at + xy.ch + ? + cc= + &subject=
	locationstring = 'mai' + 'lto:' + name + s + '%6C%69%6D%65%64%72%6F%70%2E%63%68' + '?' + 'cc' + '=' + name + s + '%62%72%61%69%6E%6B%69%6C%6C%65%72%2E%63%6F%6D' + '&' + 'subject' + '=' + subject;
	window.location.replace(locationstring);
}
