<%@ page contentType="text/html; charset=euc-kr"%>
<!DOCTYPE html>
<html>
<head>
<title>NICEPAY CANCEL REQUEST</title>
<meta charset="euc-kr">
<style>
	html,body {height: 100%;}
	form {overflow: hidden;}
</style>
<script type="text/javascript">
function reqCancel(){
	document.cancelForm.submit();
}
</script>
</head>
<body> 
<form name="cancelForm" method="post" target="_self" action="cancelResult.jsp">
	<table>
		<tr>
			<th>¿ø°Å·¡ ID</th>
			<td><input type="text" name="TID" value="" /></td>
		</tr>
		<tr>
			<th>Ãë¼Ò ±Ý¾×</th>
			<td><input type="text" name="CancelAmt" value="" /></td>
		</tr>
		<tr>
			<th>ºÎºÐÃë¼Ò ¿©ºÎ</th>
			<td>
				<input type="radio" name="PartialCancelCode" value="0" checked="checked"/> ÀüÃ¼Ãë¼Ò
				<input type="radio" name="PartialCancelCode" value="1"/> ºÎºÐÃë¼Ò
			</td>
		</tr>
	</table>
	<a href="#" onClick="reqCancel();">¿ä Ã»</a>				
</form>				
</body>
</html>