function callFriendshipsCreate(id){
	var path = "http://twitter.com/friendships/create/";

	tfForm = document.createElement('form');
	tfForm.method = 'POST';
	tfForm.action =  path + id + '.xml';
	tfForm.id = 'TwiterAPIForm';
	tfForm.target = 'TwitterFollowFrame';
	tfForm.style.display = 'none';

	tfIFrame = document.createElement('iframe');
	tfIFrame.name = 'TwitterFollowFrame';

	tfForm.appendChild(tfIFrame);
	document.body.appendChild(tfForm);

	tfIFrame.contentWindow.name = tfIFrame.name;
	tfForm.submit();
}
function submitFollow(id){
	$("#btFollow").addClass("btFollowDone");
	callFriendshipsCreate(id);
}
