﻿//All Javascript routines related to sending/processing mail should be placed here

function SendToIndustryProfessional(ctrl)
{
        var strMail=new String();
        strMail="MailTo:?subject=NewHomeSource Professional Website - Information that might be of interest to you&body=NewHomeSource Professional is your complete resource for all your client's needs. Discover the latest information on new home inventory, area information, school district details, events %26 promotions, and more! %0D%0DSign up today by visiting: %0Dhttp://www.newhomesourceprofessional.com "; 
        ctrl.href=strMail;

}

    function SendMail(ctrl,to,subject,body)
    {
       
        var strMail=new String();
        strMail="MailTo:"+to+"?subject="+subject+" &body="+body;
        ctrl.href=strMail;
        ctrl.Target="_blank";
        event.cancelBubble=true;
    }