<%@ page contentType="text/html; charset=utf-8" %>

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<html:html locale="true">
<head>
 <html:base/>
 <title><bean:message key="title.options"/></title>
 <link rel="stylesheet" href="stylesheets/login_style_ie.css" type="text/css">
</head>

<body bgcolor="#6699FF" alink="#660000" vlink="#999999" link="#003300"
    text="#000000" topmargin="0" leftmargin="5" marginheight="0" marginwidth="0">
<html:form action="dispatchOption">

<%@include file="/include/header.jsp"%>

<p>
<B><bean:message key="label.options"/></B>

<select name="option">

<%-- Iterate through the options and make them selection options --%>
<logic:iterate name="optionsForm" property="options" id="option">

  <option value="<bean:write name="option" />">
    <bean:write name="option" />
  </option>

</logic:iterate>

</select>

&nbsp;&nbsp;&nbsp;

<html:submit styleClass="fieldlabel" value="Do It"/>

<p>
<%@include file="/include/footer.jsp"%>
</html:form>
<BR><BR>
</body>
</html:html>