-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /var/www/html/product/skin/order/
File Upload :
Current File : /var/www/html/product/skin/order/step01_orderform.html

<!-- BEGIN OF FORM -->
<style type="text/css">

/* file button */
.btn_file label {
	width:100%;
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -1px;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid #d1d1d1;
	border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-webkit-border-radius: 1px;
	background-image:url(/img/mall/arrow3.png);
	background-repeat: no-repeat;
	background-position: 97% 50%;
	background-color: #fff;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

.btn_file label:hover {
	background-color: #fff;
}

.btn_file label:active {
	background-color: #fff;
}

.btn_file input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
</style>
<script language="javascript">
	var btnClickcheck = false ;
	var member_hPoint = $INFO[userpoint];
	var nresult_payprice = $INFO[nresult_payprice] ;
	var point_use_min = $INFO[point_use_min] ;
	function checking_usepoint() {
		var inpoint = document.getElementsByName('usepoint')[0];
		if(inpoint.value == '') {
			document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice) ;
		}
		else if(isNaN(inpoint.value)) {
			alert('¼ýÀÚ¸¸ ÀÔ·ÂÇÒ ¼ö ÀÖ½À´Ï´Ù.');
			inpoint.value = '';
			document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice) ;
		}
		else if(parseInt(inpoint.value, 10) > member_hPoint) {
			alert('»ç¿ëÇÒ Àû¸³±ÝÀÌ ¼ÒÀ¯ÇϽŠÀû¸³±Ýº¸´Ù ¸¹½À´Ï´Ù. ');
			inpoint.value = '';
			document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice) ;
		}
		else if(parseInt(inpoint.value, 10) > nresult_payprice) {
			alert('°áÁ¦±Ý¾× ÀÌ»ó Àû¸³±ÝÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ');
			inpoint.value = '';
			document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice) ;
		}
		else if(parseInt(inpoint.value, 10) < point_use_min) {
			alert( str_money(point_use_min) + ' ÀÌ»ó »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù. ');
			inpoint.value = '';
			document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice) ;
		}
		else document.getElementById('resultPayprice').innerHTML = str_money(nresult_payprice-parseInt(inpoint.value, 10)) ;
		payD_price1();
	}

	function checking_Allusepoint() {
		var inpoint = document.getElementsByName('usepoint')[0];
		var alpoint = document.getElementsByName('allUsepoint')[0];
		if(alpoint.checked) {
			if ( member_hPoint < point_use_min ) {
				alert( str_money(point_use_min) + ' ÀÌ»ó »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù. ');
				alpoint.checked = false;
				return ;
			}
			if ( nresult_payprice < point_use_min ) {
				alert( str_money(point_use_min) + ' ÀÌ»ó »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù. ');
				alpoint.checked = false;
				return ;
			}
			inpoint.value = member_hPoint > nresult_payprice ? nresult_payprice : member_hPoint ;
			checking_usepoint();
		}
	}

	function change_pay_message() {
		var obj = document.getElementsByName('userSpay');
		var objlen = obj.length;
		var dobj = document.getElementById('bank_option') , dobj2 = document.getElementById('divide_option') ;
		dobj.style.display = 'none';
		dobj2.style.display = 'none';
		for(var i = 0; i < objlen; i++) {
			if(obj[i].checked) {
				if(obj[i].value == 'B') {
					dobj.style.display = '';
					obj[i].parentElement.parentElement.style.borderRight = '0';
				} else if ( obj[i].value == 'D') {
					dobj2.style.display = '';
				}
			} else obj[i].parentElement.parentElement.style.borderRight = '1px solid #f0f0f0';
		}
	}


 function goScript() {
  var f = document.getElementsByName('frm_order')[0] , dtype = '' ;
  if ( _chkForm(f)) {
	  if ( $('input[name=userSpay]:checked').val() == 'D' ) {	// ºÐÇÒ°áÁ¦ ¼±ÅýÃ
		  if ( $('input[name=payD_type]:checked').length < 1 ) {
			  alert(' ºÐÇÒ°áÁ¦ °áÁ¦ ¹æ½ÄÀ» ¼±ÅÃÇØÁÖ¼¼¿ä ' );
			  $('input[name=payD_type]').eq(0).focus();
			  return ;
		  }
		  dtype = $('input[name=payD_type]:checked').val() ;
		  if ( $.trim($('input[name=payD_type' + dtype + '_p1]').val()) == '' || $.trim($('input[name=payD_type' + dtype + '_p1]').val()) == '0' ) {
			  alert(' ºÐÇÒ°áÁ¦ 1Â÷ ±Ý¾×À» ÀÔ·ÂÇØÁÖ¼¼¿ä ' ); // 2Â÷´Â ÀÚµ¿
			  $('input[name=payD_type' + dtype + '_p1]').focus();
			  return ;
		  }
		  if ( dtype != '3' && $.trim($('input[name=payD_itemtitle]').val()) == '' ) {
			  alert('ºÐÇÒ°áÁ¦ Ä«µå°áÁ¦ Çб³¸í ÁÖ¹®ÀÚ¸íÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä');
			  $('input[name=payD_itemtitle]').focus();
			  return;
		  }
	  }
	  f.action = '?mode=orderchk' ;
	  f.submit() ;
  }
 }

function sameup() {
		var f = document.getElementsByName('frm_order')[0] ;
		var x = ['name' , 'tel1' , 'tel2' , 'tel3' , 'hp1' , 'hp2' , 'hp3' , 'zip1' , 'zip2' , 'addr1' , 'addr2' , 'email'] ;
		var xlen = x.length ;
		for ( var i = 0; i < xlen ; i++ ) {
			f.elements['r_' + x[i]].value = f.elements['o_' + x[i]].value ;
		}
	}


	$(document).ready(function() {
		$("input[name=apply_cashrp]").click(function() {
			$('.ordr_banks').css('display','none');
			switch( $(this).val()) {
				case 'Y' :	$('.ordr_cashY').css('display',''); break ;
				case 'A' :	$('.ordr_cashA').css('display',''); break ;
			}
		});
		$("input[name=apply_cashhp]").blur(function() {
			//if ( !chkPHONE($(this).val())) {
			//	$(this).val('');
			//}
		});
		$('input[name=payD_type]').click(function() {
			var nno = $(this).val();
			for ( var i = 1 ; i <= 3 ; i++ ) {
				if ( nno == String(i)) {
					$('.payD_type' + i).prop('disabled',false);
				} else {
					$('.payD_type' + i).val('');
					$('.payD_type' + i).prop('disabled',true);
				}
			}
			if ( nno == '1' ) {
				$('input[name=payD_bill]').eq(0).prop('checked', true );
				$('input[name=payD_bill]').prop('disabled', true );
				$('.payD_bills').css('display','none');
			} else {
				$('input[name=payD_bill]').prop('disabled', false );
			}
		});
		$("input[name=payD_bill]").click(function() {
			$('.payD_bills').css('display','none');
			switch( $(this).val()) {
				case 'Y' :	$('.payD_billY').css('display',''); break ;
				case 'A' :	$('.payD_billA').css('display',''); break ;
			}
		});
	});
	function payD_price1() {
		if ( $('input[name=userSpay]:checked').val() != 'D' ) return ;
		if ( $('input[name=payD_type]:checked').length < 1 ) return ;
		var nno = $('input[name=payD_type]:checked').val() ;
		var obj1 = $('input[name=payD_type' + nno + '_p1') , obj2 = $('input[name=payD_type' + nno + '_p2') ;
		var sump = parseInt(String($('#resultPayprice').html()).split(',').join(''),10);
		var p = obj1.val() ;
		if ( p == '' ) p = 0 ;
		else if ( isNaN(p)) p = 0 ;
		p = parseInt(p,10);
		if ( p < 1 ) p = 0 ;
		if ( p >= sump ) {
			$(obj1).val('0');
			$(obj2).val('0');
		} else {
			$(obj1).val(p);
			$(obj2).val(sump-p);
		}
	}
</script>
<form name="frm_order" method="post" onsubmit=" return false ; " enctype="multipart/form-data">
	<input type="hidden" name="ordertype" value="$INFO[ordertype]" >
	<input type="hidden" name="ordercode" value="$INFO[ordercode]" >
	$INFO[n_member_privacy]
    <h3 style="text-align: left;">ÁÖ¹®ÀÎ Á¤º¸</h3>
	<table style="margin-top:15px; width: 1200px;">
		<tr>
			<td class="datalist-wrap a-left" style="line-height:200%; width: 761px;"><!-- ÁÖ¹®ÀÚÁ¤º¸ -->
			<table width="100%" frame=hsides>
				<col width="15%">
				<col width="35%">
				<col width="15%">
				<col width="35%">
				<tr>
					<th>ÁÖ¹®ÇϽô ºÐ</th>
					<td colspan="3">
					<input type="text" name="o_name" style="width:100px;" class="form" value="$INFO[order_name]" dreq emsg=" ÁÖ¹®ÇϽô ºÐ ¼ºÇÔÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					</td>
				</tr>
				<tr>
					<th>ÁÖ¼Ò</th>
					<td colspan="3" class="pd8" align="left">
					<input type="text" name="o_zip1" class="form" style="width:40px;" value="$INFO[order_zip1]" readonly dreq emsg=" ÁÖ¼Ò¸¦ °Ë»öÇØÁÖ¼¼¿ä ">
					-
					<input type="text" name="o_zip2" class="form" style="width:40px;" value="$INFO[order_zip2]" readonly>
					<img src="/img/bt/bt_search.gif" align="absmiddle" alt="°Ë»ö" style="margin-left:5px;" style="cursor:hand" onclick=" popzip('o_zip1','o_zip2','o_addr1');">
					<br>
					<input type="text" name="o_addr1" class="form" style="width:270px;" value="$INFO[order_addr1]" readonly>
					<input type="text" name="o_addr2" class="form" style="width:200px;" value="$INFO[order_addr2]" dreq emsg=" ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					</td>
				</tr>
				<tr>
					<th>ÀüÈ­¹øÈ£</th>
					<td>
					<input type="text" name="o_tel1" style="width:50px;" class="form" value="$INFO[order_tel1]" dreq vtype="phone" group="o_tel" emsg=" ÁÖ¹®ÇϽô ºÐ ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä " >
					-
					<input type="text" name="o_tel2" style="width:60px;" class="form" value="$INFO[order_tel2]">
					-
					<input type="text" name="o_tel3" style="width:60px;" class="form" value="$INFO[order_tel3]">
					</td>
					<th>ÈÞ´ëÆù¹øÈ£</th>
					<td class="pd_l8">
					<input type="text" name="o_hp1" style="width:50px;" class="form" value="$INFO[order_hp1]" dreq vtype="phone" group="o_hp" emsg=" ÁÖ¹®ÇϽô ºÐ ÈÞ´ëÆù¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä " >
					-
					<input type="text" name="o_hp2" style="width:60px;" class="form" value="$INFO[order_hp2]">
					-
					<input type="text" name="o_hp3" style="width:60px;" class="form" value="$INFO[order_hp3]">
					$INFO[n_member_assignhp]
					</td>
				</tr>
				<tr>
					<th>À̸ÞÀÏ</th>
					<td colspan="3">
					<input type="text" name="o_email" style="width:300px;" class="form" value="$INFO[order_email]" dreq emsg=" ÁÖ¹®ÇϽô ºÐ À̸ÞÀÏÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					</td>
				</tr>
			</table><!-- ÁÖ¹®ÀÚÁ¤º¸ ³¡--></td>
		</tr>
	</table>
	<!-- ÁÖ¹®ÀÚÁ¤º¸ ³¡ -->
	<!-- ¹è¼ÛÁöÁ¤º¸ -->
    <h3 style="text-align: left; margin-top: 15px;">¹è¼ÛÁö Á¤º¸</h3>
	<table style="margin-top:15px;">
		<tr>
			<td class="datalist-wrap a-left" style="line-height:200%;"><!-- ¹è¼ÛÁöÁ¤º¸ -->
			<table style="width: 1200px;" frame=hsides>
				<col width="15%">
				<col width="35%">
				<col width="15%">
				<col width="35%">
				<tr>
					<th>¹ÞÀ¸½Ã´Â ºÐ</th>
					<td colspan="3">
					<input type="text" name="r_name" class="form" value="$INFO[order_name]" dreq emsg=" ¹ÞÀ¸½Ã´Â ºÐ ¼ºÇÔÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					<input type="checkbox" name="same_info" value="Y" $INFO[same_info] onclick=" sameup();">
					ÁÖ¹®ÇϽôºаú µ¿ÀÏ </td>
				</tr>
				<tr>
					<th>ÁÖ¼Ò</th>
					<td colspan="3">
					<input type="text" name="r_zip1" class="form" style="width:40px;" value="$INFO[order_zip1]" readonly dreq emsg=" ÁÖ¼Ò¸¦ °Ë»öÇØÁÖ¼¼¿ä ">
					-
					<input type="text" name="r_zip2" class="form" style="width:40px;" value="$INFO[order_zip2]" readonly>
					<img src="/img/bt/bt_search.gif" align="absmiddle" alt="°Ë»ö" style="margin-left:5px;" style="cursor:hand" onclick=" popzip('r_zip1','r_zip2','r_addr1');">
					<br>
					<input type="text" name="r_addr1" class="form" style="width:270px;" value="$INFO[order_addr1]" readonly>
					<input type="text" name="r_addr2" class="form" style="width:200px;" value="$INFO[order_addr2]" dreq emsg=" ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					</td>
				</tr>
				<tr>
					<th>ÀüÈ­¹øÈ£</th>
					<td>
					<input type="text" name="r_tel1" style="width:50px;" class="form" value="$INFO[order_tel1]" dreq vtype="phone" group="r_tel" emsg=" ¹ÞÀ¸½Ã´Â ºÐ ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					-
					<input type="text" name="r_tel2" style="width:60px;" class="form" value="$INFO[order_tel2]">
					-
					<input type="text" name="r_tel3" style="width:60px;" class="form" value="$INFO[order_tel3]">
					</td>
					<th>ÈÞ´ëÆù¹øÈ£</th>
					<td>
					<input type="text" name="r_hp1" style="width:50px;" class="form" value="$INFO[order_hp1]" dreq vtype="phone" group="r_hp" emsg=" ¹ÞÀ¸½Ã´Â ºÐ ÈÞ´ëÆù¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					-
					<input type="text" name="r_hp2" style="width:60px;" class="form" value="$INFO[order_hp2]">
					-
					<input type="text" name="r_hp3" style="width:60px;" class="form" value="$INFO[order_hp3]">
					</td>
				</tr>
				<tr>
					<th>À̸ÞÀÏ</th>
					<td colspan="3">
					<input type="text" name="r_email" class="form" value="$INFO[order_email]" style="width:300px" dreq emsg=" ¹ÞÀ¸½Ã´Â ºÐ À̸ÞÀÏÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä ">
					</td>
				</tr>
				<tr>
					<th>¹è¼Û½Ã ¿ä±¸»çÇ×</th>
					<td colspan="3">
					<input type="text" name="r_contents" rows="" cols="" class="form" style="width:90%;" maxlength="50">
					<br>
					¿¹) ºÎÀç½Ã °æºñ½Ç¿¡ ¸Ã°ÜÁÖ¼¼¿ä.</td>
				</tr>
			</table><!-- ¹è¼ÛÁöÁ¤º¸ ³¡--></td>
		</tr>
	</table>
	<!-- ¹è¼ÛÁöÁ¤º¸ ³¡ -->
	<!-- ÃѼö·® ¹× ÇÕ°è -->
	<table style="margin-top:15px; width: 761px; width: 761px;">
		<tr>
			<td width="100%">
			<table width="100%" bgcolor="#FFFFFF" cellSpacing=0 cellPadding=3 border=1 borderColor=#bbd2ea style="BORDER-COLLAPSE: collapse;" frame=hsides>
				<tr>
					<td width="15%" align="center" bgcolor="#e9e9e9" height="25">ÃÑ ¼ö·®</td>
					<td width="15%" align="center">$INFO[total_count]</td>
					<td width="15%" align="center" bgcolor="#e9e9e9">¹è¼Û·á</td>
					<td width="15%" align="center">$INFO[total_send_price]¿ø</td>
					<td width="15%" align="center" bgcolor="#e9e9e9">ÃÑÇÕ°è</td>
					<td align="center" class="b style2" style="font-size:15px;">$INFO[total_price]¿ø</td>
				</tr>
			</table></td>
		</tr>
	</table>
	<!-- ÃѼö·® ¹× ÇÕ°è ³¡-->
	<!-- °áÁ¦¹æ¹ý¼±Åà -->
	<h3 style="margin-top: 15px; text-align: left;">°áÀç¹æ¹ý ¼±Åà &nbsp;<!--font color="red">Çö±Ý¿µ¼öÁõ/¼¼±Ý°è»ê¼­/½Å¿ëÄ«µå/°¡»ó°èÁ °áÁ¦ ½Ã »çÀºÇ°Àº Á¦¿ÜµÉ ¼ö ÀÖ½À´Ï´Ù.</font--></h3>
	<table style="margin-top:15px;margin-bottom:15px; width: 100%;">
		<tr>
			<td class="datalist-wrap a-left" style="line-height:200%;"><!-- °áÁ¦¹æ¹ý -->
			<table width="100%" cellSpacing=0 cellPadding=3 border=0style="margin-top:10px;">
				<!-- ¼ø¼­°¡ º¯°æµÇ¸é ¾ÈµË´Ï´Ù. -->
				<tbody>
					<tr>
						<td height="25" width="150" class="pd_l8" style="border-top:1px solid #f0f0f0;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;">
						<div style="width:200px;">
						<input type="radio" name="userSpay" value="B" $INFO[formtype-q-disabled] dreq emsg="°áÁ¦¹æ¹ýÀ» ¼±ÅÃÇØÁÖ¼¼¿ä" onclick="change_pay_message();">
						¹«ÅëÀåÀÔ±Ý(°èÁÂÀÌü)
						</div></td>
						<td id="bank_option" class="pd_l8" rowspan="4" style="border-top:1px solid #f0f0f0;border-right:1px solid #f0f0f0;display:none;">
						<div style="margin-bottom:5px;">
							<div style="float:left;">
							  <input type="radio" name="apply_cashrp" value="N" id="apply_cashrp_N" checked/> <label for="apply_cashrp_N">½Åû¾ÈÇÔ</label>
							  <input type="radio" name="apply_cashrp" value="Y" id="apply_cashrp_Y" style="margin-left:12px;"/> <label for="apply_cashrp_Y">Çö±Ý¿µ¼öÁõ</label>
							  <input type="radio" name="apply_cashrp" value="A" id="apply_cashrp_A" style="margin-left:12px;"/> <label for="apply_cashrp_A">¼¼±Ý°è»ê¼­</label>
							</div>
						  <div class="ordr_banks ordr_cashA" style="display:none;float:left;margin-left:20px;min-width:200px;"><span class="btn_file"><input type="file" name="apply_cashfile" id="apply_cashfile" onchange=" $('#apply_cashfilename').html('(÷ºÎ : ' + String(this.value).substring(  String(this.value).lastIndexOf('\\')+1 ) + ')'); "/> <label for="apply_cashfile">»ç¾÷ÀÚµî·ÏÁõ ÷ºÎ</label></span></div>
						  <!-- øºÎ½Ã ¾Æ·¡ apply_cashfilename¿¡ ÷ºÎÆÄÀÏ À̸§ Ç¥½Ã -->
						  <div class="ordr_banks ordr_cashA" style="display:none;float:left;margin-left:10px;" id="apply_cashfilename"></div>
						  <div style="clear:both;"></div>
						</div>
						<div class="ordr_banks ordr_cashA" style="display:none;margin-bottom:5px;">À̸ÞÀÏ ÁÖ¼Ò <input type="text" name="apply_cashemail" value="" class="form" style="width:150px;"/> &nbsp;&nbsp;<input type="checkbox" name="same_info2" value="Y" onclick=" $('input[name=apply_cashemail]').val($('input[name=o_email]').val())"> ÁÖ¹®ÇϽôºРÀ̸ÞÀϰú µ¿ÀÏ</div>
						<div class="ordr_banks ordr_cashY" style="display:none;margin-bottom:5px;">
							ÇÚµåÆù¹øÈ£/»ç¾÷ÀÚµî·Ï¹øÈ£ <input type="text" name="apply_cashhp" value="" class="form" style="width:200px;margin-right:30px;" placeholder=""/>
							À̸§ <input type="text" name="apply_cashname" value="" class="form" style="width:100px;"/>
						</div>
						<select name="userSpayB" style="width:500px">
							$INFO[bank_s_options]
						</select>
						<br>
						<p style="font-size:11px;">
							- ¼±ÅÃÇϽŠÀºÇàÀ¸·Î °áÀç±Ý¾×À» ÀÔ±ÝÇÏ½Ã¸é µË´Ï´Ù.
							<br>
							- ´Ü, ÁÖ¹®ÀÚ¿Í ÀÔ±ÝÀÚ°¡ ´Ù¸£½Ç °æ¿ì °í°´»ó´ã¼¾ÅÍ·Î º¯°æ »ç½ÇÀ» ¾Ë·ÁÁֽñ⠹ٶø´Ï´Ù.
							<br>
							- ÁÖ¹®³»¿ª,ÁøÇà»óȲÀº ¹è¼ÛÁ¶È¸¿¡¼­ È®ÀÎ °¡´ÉÇÕ´Ï´Ù.
						</p></td>
					</tr>
					<tr>
						<td height="25" class="pd_l8" style="border-top:1px solid #f0f0f0;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;">
						<div style="width:200px;">
						<input type="radio" name="userSpay" value="C" onclick="change_pay_message();">
						½Å¿ëÄ«µå(ºÎ°¡¼¼ Æ÷ÇÔ) / °£Æí°áÁ¦(īī¿ÀÆäÀÌ ¿Ü)</div></td>
					</tr>
					<tr>
						<td height="25" class="pd_l8" style="border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;">
							<div style="width:250px;"><input type="radio" name="userSpay" value="D" $INFO[formtype-q-disabled] onclick="change_pay_message();"> ºÐÇÒ°áÁ¦ </div>
							<div id="divide_option" style="display:none;margin-left:30px;">
								<div style="margin-top:10px;">* 1Â÷ °áÁ¦ ±Ý¾×À» ÀÔ·ÂÇϽøé 2Â÷ °áÁ¦ ±Ý¾×Àº ÀÚµ¿À¸·Î ¿¬»êµË´Ï´Ù. </div>
								<div><input type="radio" name="payD_type" value="1" id="payD_type1"><label for="payD_type1">Ä«µå+Ä«µå</label> <input type="text" name="payD_type1_p1" value="" placeholder="Ä«µå ±Ý¾×" size="10" class="form payD_type1" onblur="payD_price1()" disabled/>¿ø <input type="text" name="payD_type1_p2" value="" placeholder="Ä«µå ±Ý¾×" size="10" class="form payD_type1" disabled readonly/> ¿ø</div>
								<div><input type="radio" name="payD_type" value="2" id="payD_type2"><label for="payD_type2">Ä«µå+Çö±Ý</label> <input type="text" name="payD_type2_p1" value="" placeholder="Ä«µå ±Ý¾×" size="10" class="form payD_type2" onblur="payD_price1()" disabled/>¿ø <input type="text" name="payD_type2_p2" value="" placeholder="Çö±Ý ±Ý¾×" size="10" class="form payD_type2" disabled readonly/> ¿ø</div>
								<div><input type="radio" name="payD_type" value="3" id="payD_type3"><label for="payD_type3">Çö±Ý+Çö±Ý</label> <input type="text" name="payD_type3_p1" value="" placeholder="Çö±Ý ±Ý¾×" size="10" class="form payD_type3" onblur="payD_price1()" disabled/>¿ø <input type="text" name="payD_type3_p2" value="" placeholder="Çö±Ý ±Ý¾×" size="10" class="form payD_type3" disabled readonly/> ¿ø</div>
								<div style="margin-top:10px;">Ä«µå°áÁ¦½Ã °³ÀΰáÁ¦ Ä«Å×°í¸®¿¡¼­ Çб³¸í ÁÖ¹®ÀÚ¸í È®ÀÎÇϽŠÈÄ °áÁ¦ ÁøÇàÇØÁÖ¼¼¿ä</div>
								<div><input type="text" name="payD_itemtitle" value="" placeholder="Çб³¸í ÁÖ¹®ÀÚ¸íÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä" class="form" size="30"/></div>
								<div style="margin-top:10px;">Çö±Ý °áÁ¦½Ã &nbsp;&nbsp; ÇϳªÀºÇà 144-910563-22207 &nbsp;&nbsp;¿¹±ÝÁÖ : ±èº¹¼ø (ÀÔ±ÝÀÚ¸íÀº ÁÖ¹®ÀÚ¸íÀ¸·Î)</div>
								<div>
									<div style="float:left;">
									  <input type="radio" name="payD_bill" value="N" id="payD_bill_N" disabled checked/> <label for="payD_bill_N">½Åû¾ÈÇÔ</label>
									  <input type="radio" name="payD_bill" value="Y" id="payD_bill_Y" disabled style="margin-left:12px;"/> <label for="payD_bill_Y">Çö±Ý¿µ¼öÁõ</label>
									  <input type="radio" name="payD_bill" value="A" id="payD_bill_A" disabled style="margin-left:12px;"/> <label for="payD_bill_A">¼¼±Ý°è»ê¼­</label>
								   </div>
								  <div class="payD_bills payD_billA" style="display:none;float:left;margin-left:20px;min-width:200px;"><span class="btn_file"><input type="file" name="payD_bill_cashfile" id="payD_bill_cashfile" onchange=" $('#payD_bill_cashfilename').html('(÷ºÎ : ' + String(this.value).substring(  String(this.value).lastIndexOf('\\')+1 ) + ')'); "/> <label for="payD_bill_cashfile">»ç¾÷ÀÚµî·ÏÁõ ÷ºÎ</label></span></div>
								  <!-- øºÎ½Ã ¾Æ·¡ apply_cashfilename¿¡ ÷ºÎÆÄÀÏ À̸§ Ç¥½Ã -->
								  <div class="payD_bills payD_billA" style="display:none;float:left;margin-left:10px;" id="payD_bill_cashfilename"></div>
								  <div style="clear:both;"></div>
								</div>
								<div class="payD_bills payD_billA" style="display:none;margin-bottom:5px;">À̸ÞÀÏ ÁÖ¼Ò <input type="text" name="payD_bill_cashemail" value="" class="form" style="width:150px;"/> &nbsp;&nbsp;<input type="checkbox" name="same_info3" value="Y" onclick=" $('input[name=payD_bill_cashemail]').val($('input[name=o_email]').val())"> ÁÖ¹®ÇϽôºРÀ̸ÞÀϰú µ¿ÀÏ</div>
								<div class="payD_bills payD_billY" style="display:none;margin-bottom:5px;">
									ÇÚµåÆù¹øÈ£/»ç¾÷ÀÚµî·Ï¹øÈ£ <input type="text" name="payD_bill_cashhp" value="" class="form" style="width:200px;margin-right:30px;" placeholder=""/>
									À̸§ <input type="text" name="payD_bill_cashname" value="" class="form" style="width:100px;"/>
								</div>
							</div>
						</td>
					</tr>
					<tr>
						<td height="25" class="pd_l8" style="border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;">
						<div style="width:250px;">
							<input type="radio" name="userSpay" value="E" $INFO[formtype-q-disabled] onclick="change_pay_message();">
							°¡»ó°èÁÂ(¿¡½ºÅ©·Î) (ºÎ°¡¼¼ Æ÷ÇÔ) </div></td>
					</tr>
					$INFO[skn_point]
					<tr>
						<td height="25" class="pd_l8" colspan="2" style="border-bottom:1px solid #f0f0f0;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;background-color:#eee;"><span style="font-weight:bold;margin-right:130px;">°áÁ¦±Ý¾×</span><span id="resultPayprice" style="font-size:14px;">$INFO[result_payprice]</span>¿ø </td>
					</tr>
				</tbody>
			</table><!-- °áÁ¦¹æ¹ý ³¡--></td>
		</tr>
	</table>
	<!-- °áÁ¦¹æ¹ý¼±Åà ³¡-->
	<div style="text-align: left;">
		<a href="javascript:goScript();"><img src="/img/bt/bt_bbuy.gif" alt="±¸¸ÅÇϱâ" style="margin-right:5px;" id="btnGo_orderpayform"></a><a href="$TOTAL[cmnall]"><img src="/img/bt/bt_shopping02.gif" alt="¼îÇΰè¼ÓÇϱâ" style="margin-right:5px;" id="btnGo_orderpayform2"></a>
	</div>
</form>
<!-- END OF FORM -->

<!-- BEGIN OF N-MEMBER-HP -->
	<button type="button" id="certificationhp_send" class="buttonSS btn_radiusS btn_orange">ÀÎÁõ¹øÈ£ ¹ß¼Û</button>
	<div style="margin-top:5px;">
		<input type="hidden" name="certificationhp_obtain" id="certificationhp_obtain" dreq emsg="ÀÎÁõ ÇʼöÀÔ´Ï´Ù"/>
		<span id="certificationhp_sendaf" style="display:none;">
			<input type="text" name="certificationhp_code" id="certificationhp_code" placeholder="ÀÎÁõ¹øÈ£" dreq emsg="ÀÎÁõ¹øÈ£ ÀÔ·Â ÇʼöÀÔ´Ï´Ù"/>
			<button type="button" id="certificationhp_check" class="buttonSS btn_radiusS btn_orange">ÀÎÁõ¹øÈ£ È®ÀÎ</button>
		</span>
	</div>
	<script type="text/javascript">
		var stApplyStatus = false ;
		function certificationhp_reset() {
			if ( $('input[name=certificationhp_obtain]').val() != '' ) {
				stApplyStatus = false;
				$('input[name=o_hp1]').val('') ;
				$('input[name=o_hp2]').val('') ;
				$('input[name=o_hp3]').val('') ;
				$('input[name=certificationhp_obtain]').val('') ;
				$('input[name=certificationhp_code]').val('') ;
				$('#certificationhp_sendaf').css('display','none');
				//	$('#certificationhp_send').css('display','');
			}
		}
		function certificationhp_send_result(r) {
			stApplyStatus = false ;
			if ( r['item'][0]['num'] == '11' ) {
				console.log(r['item'][0]['msg']);
				alert('ÀÎÁõ¹øÈ£°¡ ¹ß¼ÛµÇ¾ú½À´Ï´Ù');
				$('#certificationhp_sendaf').css('display','');
				//$('#certificationhp_send').css('display','none');
			} else if ( r['item'][0]['num'] == 'E0' ) {
				alert('¿¬¶ôó¸¦ È®ÀÎÇØÁÖ¼¼¿ä');
			}
		}
		function certificationhp_check_result(r) {
			stApplyStatus = false ;
			if ( r['item'][0]['num'] == '11' ) {
				console.log(r['item'][0]['msg']);
				alert('ÀÎÁõµÇ¾ú½À´Ï´Ù');
				$('input[name=certificationhp_obtain]').val('obtain') ;
			} else if ( r['item'][0]['num'] == 'E0' ) {
				alert('ÀÎÁõ¹øÈ£¸¦ È®ÀÎÇØÁÖ¼¼¿ä');
			} else if ( r['item'][0]['num'] == 'E1' ) {
				alert('ÀÎÁõ¹øÈ£¸¦ ´Ù½Ã È®ÀÎÇØÁÖ¼¼¿ä');
			} else if ( r['item'][0]['num'] == 'E2' ) {
				alert('¿¬¶ôó¸¦ È®ÀÎÇØÁÖ¼¼¿ä');
				$('input[name=certificationhp_obtain]').val('') ;
				$('input[name=certificationhp_code]').val('') ;
				$('#certificationhp_sendaf').css('display','none');
			}
		}
		$(document).ready(function() {
			$('input[name=o_hp1]').change(function() { certificationhp_reset(); });
			$('input[name=o_hp2]').change(function() { certificationhp_reset(); });
			$('input[name=o_hp3]').change(function() { certificationhp_reset(); });
			$('input[name=certificationhp_code]').change(function() { certificationhp_reset(); });
			$('#certificationhp_send').click(function() {
				if ( stApplyStatus ) { alert('¸ÕÀú ¿äûÇϽŠÀÛ¾÷À» ½ÇÇà ÁßÀÔ´Ï´Ù. Àá½Ã¸¸ ±â´Ù·ÁÁÖ¼¼¿ä' ); return ; }
				var hp = $('input[name=o_hp1]').val() + '-' + $('input[name=o_hp2]').val() + '-' + $('input[name=o_hp3]').val() ;
				if ( !chkPHONE(hp)) { alert('ÇÚµåÆù¹øÈ£¸¦ È®ÀÎÇØÁÖ¼¼¿ä' ); return ; }
				stApplyStatus = true ;
				var aObj    = new AjaxObject;
				aObj.getHttpRequest('check-sms.php?step=send&hp=' + hp, 'certificationhp_send_result');
			});
			$('#certificationhp_check').click(function() {
				if ( stApplyStatus ) { alert('¸ÕÀú ¿äûÇϽŠÀÛ¾÷À» ½ÇÇà ÁßÀÔ´Ï´Ù. Àá½Ã¸¸ ±â´Ù·ÁÁÖ¼¼¿ä' ); return ; }
				var v = $.trim($('input[name=certificationhp_code]').val()) ;
				var hp = $('input[name=o_hp1]').val() + '-' + $('input[name=o_hp2]').val() + '-' + $('input[name=o_hp3]').val() ;
				if ( v == '' ) { alert('ÀÎÁõ¹øÈ£¸¦ È®ÀÎÇØÁÖ¼¼¿ä'); return ; }
				stApplyStatus = true ;
				var aObj    = new AjaxObject;
				aObj.getHttpRequest('check-sms.php?step=check&hp=' + hp + '&ccode=' + v, 'certificationhp_check_result');
			});
		});
	</script>
<!-- END OF N-MEMBER-HP -->

Copyright © 2017 || Recoded By Mr.Bumblebee