hi i need help with opening tabs in a flex browser can any one help me this is me code


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">

<s:layout>
<s:VerticalLayout
paddingTop="5"
paddingBottom="5"
paddingLeft="5"
paddingRight="5"/>
</s:layout>

<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
private var stageWeb:StageWebView;
protected function google_clickHandler(event:MouseEvent):void
{

{
stageWeb = new StageWebView();
stageWeb.viewPort = new Rectangle(5, 100, stage.width-10, stage.height-90);
stageWeb.stage = this.stage;
stageWeb.loadURL("http://www.google.com");
}
}

public function addTab():void {

}
public function removeTab():void {

}

]]>
</fx:Script>

<fxeclarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fxeclarations>
<s:Panel width="100%" height="100%" >
<s:HGroup >
<s:Button id="google"
y="8" height="48"
label="Google"
click="google_clickHandler(event);"/>
<s:Button y="8" height="48" label="Remove Tab" click="removeTab()"/>
<s:Button y="8" height="48" label="Add Tab" click="addTab()"/>
</s:HGroup>
</s:Panel>


</s:Application>