﻿function createEmailLink() {

	var subject = 'Make Roads Safe: ' + top.document.title; 
	var body = 'I saw this article on the Make Roads Safe website: ' + top.location.href;
	var linkHtml = '<a class=contact href="mailto:?subject=' + escape(subject)
				+ '&body=' + escape(body) + '" onmouseover="status=\'; return true;" '
				+ 'title="Send your friends an e-mail about this page">Send to a Friend<\/a>';

	document.write(linkHtml);
}

createEmailLink();