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

	<div id="tab_pane_image">
		<table border="1">
			<tr>
				<th>
					<label for="imagefile">Datei</label>
				</th>
				<td>
					<form action="../demos/upl" id="file_upload" method="post" enctype="multipart/form-data" target="upload_message">
						<input type="file" id="i_file" name="i_file"/>
						<input  type="hidden" name="action" value="bgup"/>
					</form>
				</td>
			</tr>
			<tr>
				<td colspan="2">
					<iframe name="upload_message" id="upload_message" width="400" height="50" frameborder="1">
						Ihr Browser unterstützt leider keine inline frames!
					</iframe>
				</td>
			</tr>
			<tr>
				<th>
					x - Position
				</th>
				<td>
					<input id="i_xpos" type="text" value="0" size="3"/>
					<select id="i_xunit">
						<option value="px" selected="selected">px</option>
						<option value="%">%</option>
					</select>
					<input type="button" id="i_xcenter" value="zentrieren"/>
					<input type="button" id="i_xplus" value="+"/>
					<input type="button" id="i_xminus" value="-"/>
				</td>
			</tr>
			<tr>
				<th>
					y - Position
				</th>
				<td>
					<input id="i_ypos" type="text" value="0" size="3"/>
					<select id="i_yunit">
						<option value="px" selected="selected">px</option>
						<option value="%">%</option>
					</select>
					<input type="button" id="i_ycenter" value="zentrieren"/>
					<input type="button" id="i_yplus" value="+"/>
					<input type="button" id="i_yminus" value="-"/>
				</td>
			</tr>
		</table>
	</div>

</jsp:root>