function sendmail() {
	subject = document.supportForm.subject.value;
	body = document.supportForm.detail.value;
	document.location.href = "mailto:support@menturio.com?subject=" + subject + "&body=" + body;
}
