<waml xmlns="http://libs.x-appl.com/stdlib/1.0" xmlns:web="http://libs.x-appl.com/weblib/1.0">
  <head>
    <actions>
      <web:goBack id="Back"/>
      <web:goForward id="Forward"/>
      <web:refresh id="Refresh"/>

      <action id="GotoGoogle" caption="Google" image="http://www.google.com/intl/en_ALL/images/logo.gif" onExecute="mybrowser.go('http://www.google.com')"/>
      <action id="GotoYahoo" caption="Yahoo" image="http://l.yimg.com/a/i/ww/beta/y3.gif" onExecute="mybrowser.go('http://www.yahoo.com')"/>
      <action id="GotoAlfega" caption="Alfega" image="http://www.alfega.com/images/logo_big.png" onExecute="mybrowser.go('http://www.alfega.com')"/>
    </actions>
  </head>

  <body width="1000" height="700" caption="My Web Browser">

    <toolbar align="top" captionOptions="none">
      <item action="Back"/>
      <item action="Forward"/>
      <item action="Refresh"/>
      <item caption="|"/>
      <item action="GotoGoogle"/>
      <item action="GotoYahoo"/>
      <item action="GotoAlfega"/>
    </toolbar>

    <web:browser id="mybrowser" align="client" homepage="http://www.microsoft.com"/>

  </body>
</waml>