function mailableLink(URL) {
	var URL = "http://bedfordgis.bedfordva.gov/bedfordcity/mainmap.asp" + URL.replace(' ','+');
	var txt = "<html>\n";
	txt += "<head>\n";
	txt += "<title>Mailable Link</title>\n";
	txt += "</head>\n";
	txt += "<body><center>\n";
	txt += "<h2>Mailable Link</h2>\n";
	txt += 'Copy and paste all of the text in the box below.';
	txt += '<br><table border="1" width="90%"><tr><td><b>' + URL + '</b></td></tr></table><br>\n';
	txt += "</center></body></html>\n";
	var Features = "directories=0,location=0,menubar=0,resizable=1,scrollbars=auto,status=0,titlebar=0,toolbar=0,width=640,height=200"; 
	mailWindow = open("", "Mailable", Features);
	var q = mailWindow.document;
	q.open();
	q.write(txt);
	q.close();
	mailWindow.focus();
}

