$(document).ready(function(){
	$("form.tellfriend").bind("keyup", blah).bind("click", blah).bind("focus", blah);
	$(".formwarning").remove();
	function blah() {
		$(this).prepend('<input type="hidden" name="_VerifyEmailFriend" value="ok" />');
		$(this).attr("action", "profile_tellafriend_Send.asp");
		$("input:submit").attr("disabled", false);
		$(this).unbind("keyup", blah).unbind("click", blah).unbind("focus", blah);
		$("script[src$='base64friend.js']").remove();
	}
});