<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<meta charset="utf-8" />
<title>TIMBUS Legal Management</title>
<LINK rel="SHORTCUT ICON" href="./Timbus_icon.png">
<link rel="stylesheet" type="text/css" href="jMetro/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="jMetro/timbusstyle.css" />
<link rel="stylesheet" type="text/css"
href="./jquery-ui-1.10.3/themes/base/jquery-ui.css" />
<script src="./jquery-1.10.2/jquery-1.10.2.min.js"></script>
<script src="./jquery-ui-1.10.3/ui/jquery-ui.js"></script>
<script type="text/javascript">
$(function() {
$(".resultList").accordion({
header : 'div.head',
event : "mouseover",
active : false,
alwaysOpen : false
});
});
</script>
</head>
<body>
<div
style="border-top: 1px solid grey; border-bottom: 1px solid grey; width: 700px; position: relative; margin-left: -350px; left: 50%; padding: 10px 0 10px 0">
<a href="logout.jsp">Logout</a>
</div>
<div id="wrapper">
<h1 class="header">What are you looking for?</h1>
<s:form action="setLawDocumentList" validate="false" theme="simple">
<div class="resultList">
<s:iterator value="resultedLaws">
<s:set var="docId" value="docId" />
<div class="head">
<s:checkbox label="" key="selected" value="Y" fieldValue="Y"
name="selectedDocs.%{docId}" />
<h3>
<s:property value="article" />
<s:property value="shortTitle" />
<br /> Last change
<s:property value="changeDate" />
</h3>
</div>
<div class="content">
<s:property value="HTMLContentPart" />
</div>
</s:iterator>
</div>
<input type="submit" value=" Absenden ">
</s:form>
</div>
</body>
</html>