stop();
//sets a default component to react to the enter key on the keyboard
focusManager.defaultPushButton=bSend;
//sends the Information out of Flash
bSend.onRelease = function() {
var targetLoadVars:LoadVars = new LoadVars();
var myLoadVars:LoadVars = new LoadVars();
myLoadVars.EasyNavYes = rbYes.selectedItem;
myLoadVars.EasyNavNo = rbNo.selectedItem;
myLoadVars.RateSite = nsRate.value;
myLoadVars.Improvements = taImprove.text;
myLoadVars.emailTo =tiEmailTo.text;
myLoadVars.sendAndLoad ("http://www.flash-mx.com/ws/submit_feedback.cfm", targetLoadVars, "POST");
targetLoadVars.onLoad = function() {
trace(this.success);
};
gotoAndStop("Thank You");
};