<html xmlns:m="http://www.seasar.org/maya" m:extends="/WEB-INF/layout/layout.html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-31j" />
<title>Add</title>
</head>
<body>
<span m:inject="f:param" m:name="layoutTitle" m:value="Add"/>
<span m:inject="s:insert" m:name="body">
<script language="javascript">
<!--
        function openTest() {
                windowStyle = 'width=400,height=250,location=no,status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes';
                window.open('testWindow.html', 'testWindow', windowStyle);
        }
//--></script>
<form>
<span m:inject="h:messages" m:globalOnly="false" m:showDetail="true"/>
<input type="text" m:value="#{addDto.arg1}"/> +
<input type="text" m:value="#{addDto.arg2}"/> =
<span m:value="#{addDto.result}"/>
<input type="submit" value="calculate" m:action="#{addAction.calculate}"/>
<hr />
<a href="#" onclick="openTest()" >open</a>
</form>
</span>
</body>
</html>