var taf_attempts = 0;
var taf_isset = false;
function TellAFriend(obj, url, title) {
	addthis_open(obj, 'email', escape(url), title);
//	addthis_sendto('email');
	taf_isset = false;
	taf_attempts = 0;
	SetTellAFriendMessage();
}
function SetTellAFriendMessage() {
	if(taf_attempts < 10 && !taf_isset) {
		var obj = document.getElementById("at_msg");
		if(obj != null) {
			obj.value = "I just took a few short minutes to add my voice to www.MyCommunityMyBank.org. Please join me and tell Congress to stop the shake down of hardworking Americans and fix “Too-Big-To-Fail” once and for all. Americans have had enough of the nightmare of irresponsible big institutions getting bailed out by the U.S. government using their tax dollars. Citizens on Main Street should not have to pay for the risky behavior of corporate giants on Wall Street. Take action by sending a letter to Congress now!";
			taf_isset = true;
		} else {
			setTimeout('SetTellAFriendMessage()', 500);
		}
	}
}
