<html>
<head>
<title>파일 첨부를 이미지 버튼으로 처리하기</title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script language="JavaScript">
<!--
function fileup(id) {
document.getElementById(id).click();
}
//-->
</script>
</head>
<body>
<form method=post name="cform">
<div style="display:none">
<input type="file" name="imagetarget" id="imagetarget">
</div>
<a href="javascript:fileup('imagetarget');">[여기에 이미지 태그를 넣는다]</a>
</form>
</body>
</html>