function sendmessage(account, which, subject) {
	if (which==1) {
		address = account + '@' + 'dominium' + '.pl';
	} else {
		address = account + '@' + 'friscom.com' + '.pl';
	}
	if (subject) {
		window.open('mailto:'+[address]+'?Subject='+subject,'_top');
	} else {
		window.open('mailto:'+[address],'_top');
	}
}

