function mailpage(subject, body) {
	mail_str = "mailto:?subject=" + subject;
	mail_str += "&body=" + body;
	location.href = mail_str;
}
