1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<?php include_once("./_common2.php"); ?>
<? include("../../manage/category/common.php"); include('../../html/include/_Head.php'); ?>
<script> function billChk(){
if(billFrm.companyNum.value == "5021894746-"){ alert("¹ÌÁø¼ÒÇÁÆ® ³»¿ªÀº È®ÀÎ ÇÒ ¼ö ¾ø½À´Ï´Ù."); billFrm.companyNum.focus(); billFrm.companyNum.value=""; return; } if(billFrm.companyNum.value == ""){ alert("»ç¾÷ÀÚ ¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä"); billFrm.companyNum.focus(); return; }
string = billFrm.companyNum.value; result = 0; for(i=0; i<string.length; i++) { if(string.charAt(i) =="-") result++; } if( result > 0){ alert(" '-' ¸¦ »©°í ÀÔ·ÂÇϼ¼¿ä"); billFrm.companyNum.focus(); return; }
billFrm.submit(); }
function Msg(t){ alert(t); } </script>
<link href="./css/style.css" rel="stylesheet" type="text/css"> <link href="./newcss/style.css" rel="stylesheet" type="text/css"> <script language='javascript' src='./js/img.js'></script>
<body topmargin="0" marginwidth="0" marginheight="0">
<!-- ¸ÞÀÎ ³»¿ë ½ÃÀÛ--> <div id='inputifm' style="text-align:center;"> <table width="600" border="0" cellspacing="0" cellpadding="0"> <!-- °è»ê¼ Á¶È¸ --> <tr><td height="50"></td></tr> <tr><td style="padding-bottom:5px;"><img src="./img/customer/tax_text.jpg" alt="¼¼±Ý°è»ê¼ ¹ßÇà"></td></tr> <tr><td height="2" bgcolor="#627aaf" colspan="5"></td></tr> <tr> <td style="padding:10px;" colspan="5"> <img src="./img/product/p_dot.jpg" vspace="8" hspace="10" align="absmiddle"><strong>»ç¾÷ÀÚ µî·Ï¹øÈ£¿Í E¸ÞÀÏ ÁÖ¼Ò¸¦ ÀÔ·Â ÈÄ [¼¼±Ý°è»ê¼ Ãâ·Â] ¹öưÀ» ´©¸£¼¼¿ä.</strong> <br> <img src="./img/product/p_dot.jpg" vspace="8" hspace="10" align="absmiddle"><strong>¼¼±Ý°è»ê¼ ¹ßÇ๮ÀÇ : 1566-8680</strong> </td> </tr>
<tr><td height="1" bgcolor="#c3c3c3" colspan="5"></td></tr> </table>
<table width="600" height="160" border="0" cellpadding="0" cellspacing="0"> <!-- <form name="billFrm" method='post' target='billifm' action='billProcess.php' onsubmit="return false;"> --> <form name="billFrm" method='post' target='billifm' action='billProcess.php'> <tr> <td width="210" align="center" bgcolor="#f8f8f8">»ç¾÷ÀÚµî·Ï¹øÈ£ ('-' ¾øÀÌ ÀÔ·Â)</td> <td width="195" align="right"><input name="companyNum" type="text" class="log" style="height:20px;" size="20" maxlength="10"></td> <!-- <td width="195" style="padding-left:10px;"><img src="./img/customer/taxprint_bt.jpg" onsubmit="billChk();" onClick="billChk();" style="cursor:hand;" border="0"></td> --> <td width="195" style="padding-left:10px;"><img src="./img/customer/taxprint_bt.jpg" onClick="billChk();" style="cursor:hand;" border="0"></td> </tr> <tr><td height="1" bgcolor="#c3c3c3" colspan="5"></td></tr> </form> </table> </div>
</table>
<iframe name='billifm' width=0 height=0></iframe> <iframe name="Joinifm" width=0 height=0></iframe> <iframe name='userDiv' width=0 height=0></iframe>
</body>
|