// JavaScript Document
function mailpage()
{
	mail_str = "mailto:?subject=Check out the EPIC Group website";
	mail_str += "&body=I thought you may be interested in this. ";
	mail_str += "<br>";
	mail_str += "You can view it at, " + location.href; 
	location.href = mail_str;
}


