function mailpage(DomainName, WebURL, DemoURL)
{
    mail_str = "mailto:?subject= Thought this might interest you: Physician Access by Phone or Secure Email day or night by " + DomainName;
  mail_str += "&body= I Thought this might interest you: Physician Access by Phone or Secure Email day or night by " + DomainName+escape("\n");
mail_str += "You can learn more about this great service by viewing the links below:"+escape("\n\n");
mail_str += "Website: " + WebURL + escape("\n");
if (DemoURL != null && DemoURL != '') {
    mail_str += "Animated Demo: " + DemoURL;
}
  location.href = mail_str;
}
