// JavaScript Document
function addImgUp(cnt) {	
	var obj=document.getElementById("img_up");
	if(!cnt) obj.innerHTML="&nbsp;";
	else obj.innerHTML="";
	
	for(i=1; i <= cnt; i++) {		
		obj.innerHTML+="ÀÌ¹ÌÁö" + i + "&nbsp;<input type=\"file\" name=\"img_upload_" + i + "\" class=\"input_large\" size=\"20\"><br>";
	}
}

function addFileUp(cnt) {	
	var obj=document.getElementById("file_up");
	if(!cnt) obj.innerHTML="&nbsp;";
	else obj.innerHTML="";
	
	for(i=1; i <= cnt; i++) {		
		obj.innerHTML+="Ã·ºÎÆÄÀÏ" + i + "&nbsp;<input type=\"file\" name=\"file_upload_" + i + "\" class=\"input_large\" size=\"20\"><br>";
	}
}

function bconChk(ment,trueChk) {
  if(confirm(ment)){
	  process_frame.location.href=trueChk;
  }else{
	  return;
  }
}



