// JavaScript Document

// email this page //
// code as <a href="javascript:emailUrl()"> //
    function emailUrl()
    {
        var sSubject = "No Hate in Our Town";

        var sBody = "I urge you to sign the resolution against bias, hate and bigotry at http://nccjtriad.org/resolution \n\n";
        sBody += document.title + "\n\n" + document.URL;

        var sUrl = "mailto:?Subject=" + escape(sSubject);
        sUrl += "&Body=" + escape(sBody);
        location.href = sUrl;
    }
	
