<?xml version="1.0" encoding="UTF-8" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
<jsp:directive.page import="ji.bg.StampCreator"/>


	<div id="tab_pane_format">
		<table>
			<tr>
				<th>
					Größenfaktor
				</th>
				<td>
					<input	name="f_factor" type="radio" value="1" />
					<label>1x</label>
					<input name="f_factor" type="radio" value="2"/>
					<label>2x</label>
					<input name="f_factor" type="radio" value="3"/>
					<label>3x </label>
					<input name="f_factor" type="radio" value="6" checked="checked" />
					<label>6x</label>
				</td>
			</tr>
			<tr>
				<th>
					<label for="f_width">Breite</label>
				</th>
				<td>
					<select id="f_width">
						<jsp:scriptlet><![CDATA[
						for (int i=StampCreator.X_MIN_SIZE; i <= StampCreator.X_MAX_SIZE; i++) {
							if (i==StampCreator.X_INIT_SIZE) {
						]]></jsp:scriptlet>
								<option selected="selected"> <jsp:expression>i</jsp:expression></option>
						<jsp:scriptlet><![CDATA[
							}
							else {
						]]></jsp:scriptlet>
								<option> <jsp:expression>i</jsp:expression></option>
						<jsp:scriptlet><![CDATA[
							}
						}
						]]></jsp:scriptlet>
					</select>
				</td>
			</tr>
			<tr>
				<th>
					 <label for="f_height">Höhe</label>
				</th>
				<td>
					<select id="f_height">
						<jsp:scriptlet><![CDATA[
						for (int i=StampCreator.Y_MIN_SIZE; i <= StampCreator.Y_MAX_SIZE; i++) {
							if (i==StampCreator.Y_INIT_SIZE) {
						]]></jsp:scriptlet>
								<option selected="selected"> <jsp:expression>i</jsp:expression></option>
						<jsp:scriptlet><![CDATA[
							}
							else {
						]]></jsp:scriptlet>
								<option> <jsp:expression>i</jsp:expression></option>
						<jsp:scriptlet><![CDATA[
							}
						}
						]]></jsp:scriptlet>
					</select>
				</td>
			</tr>
		</table>
	</div>

</jsp:root>