<?xml version="1.0"?>

<wml>
<card id="a" title="Variable Test">
<p>
	<input type="text" name="test"/>
	<input type="text" name="test2"/>
	<anchor>Next<go href="#b"/></anchor>
</p>
</card>

<card id="b" title="Variable Test">
<p>
	1st: $test <br/>
	2nd: $test2
	<anchor>NewContext<go href="#c"/></anchor>
	<anchor>Start<go href="#a"/></anchor>
	<anchor>Send vars to srv<go href="srv.wml?t=$(test)&amp;t2=$(test2)"/></anchor>
</p>
</card>

<card id="c" newcontext="true" title="Variable Test">
<p>
	New Context
	<anchor>Back<go href="#b"/></anchor>
</p>
</card>
</wml>

