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