Trying to insert comments

So ive got my myspace designed in flash and im currently testing it. What i would like to do
is have a input box on flash with a button that will submit the input box contents as a comment on myspace. Unfortunatly im not sure how to go about it in actionscript. The html way of doing it without using myspace’s built in comment link is

<form method="post"
action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment">
				<input type="hidden" name="friendID" value="friendid">
				<textarea name="f_comments" class="comment_textarea" cols="25" rows="8"></textarea>
				<p><input type="submit" value="post" class="button" name="comment" /></p>
				<p>Leave a comment or <a href="http://comments.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=friendid" title="View comment archive">View All</a></p>
			</form>

Any ideas how to do this in flash? the above code takes all the text from the textarea “f_comments” and submits it as a comment.