function sendInternMail(toWho) {
	domain='miu';
	ext='.se';
	window.location = 'mailto:'+toWho+'@'+domain+ext;
}
function sendExternMail(toWho, domain, ext) {
	window.location = 'mailto:'+toWho+'@'+domain+'.'+ext;
}
