﻿function emailThis()
{
	
	var et='mailto:';
	var embody = 'I thought you might find this interesting. ';
	
	if(document.getElementById('page-title'))
	{
	var pageTitle = document.getElementById('page-title').innerText;
	var emsub = 'North Carolina League of Municipalities: '+pageTitle;
	et+='?subject='+emsub+'&body='+embody+pageTitle+': '+ location.href;
	location.href=et;

	}
	else
	{
	var emsub = 'North Carolina League of Municipalities';
	et+='?subject='+emsub+'&body='+embody+' '+ location.href;
	location.href=et;

	}
}




