function getMail(user,domain,subject) {
	mailstring = "mailto:" + user + "@" + domain + "?subject=" + subject;
	window.location = mailstring;
}