
function EMailBroadcast()
{
	var mailURL;
	var to="";
	var subject = escape("Metroplex Daily -- a Dallas / Fort Worth City Guide");
	var body = "";
	var homeURL = "http://www.metroplexdaily.com/";


	body += escape("Check out Metroplex Daily at " + homeURL + "\r\n\r\n");
	body += escape("It's full of great Dallas / Fort Worth information; such as entertainment info, radio stations, photos of the city, and much more!\r\n\r\n");
	body += escape("Bookmark it...  http://www.metroplexdaily.com  ");


	mailURL = 'mailto:' + to + '?subject=' + subject + '&body=' + body;

	document.location = mailURL;
	
	

}



