/var/www/(Del)eizo.hkosl.com/global/hkwarranty/index.php


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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659

<?php require_once("../webadmin/configure.php");?>
<?php 
if($_SESSION["langcode"] == "tc"){ ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
    <link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta name="copyright" content="EIZO Corporation. All Rights Reserved."/>
    <meta http-equiv="Content-Style-Type" content="text/css"/>
    <meta http-equiv="Content-Script-Type" content="text/javascript"/>

    <meta name="description" content="Eizo Nanao Corporation Global Site"/>
    <meta name="keywords" content=""/>
    <title> 產品保養登記 | EIZO</title>

</head>
<body id="hongkong_warranty_bg">

<!-- real warranty content -->
<?php
    $langcode 
"tc";
?>
<link href="css/language_<?=$_SESSION["langcode"]?>.css" rel="stylesheet">
<link href="css/warranty_style.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script type="text/javascript" src="js/jquery-ui-1.8.18.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.chained.min.js"></script>
<script type="text/javascript">
    $(function () {
        $("#model").chained("#series");
    });


    function isEmpty(str) {
        return (!str || 0 === str.length);
    }

    function isInt(value) {
        return !isNaN(value) && parseInt(value) == value;
    }

    $(function(){


            $( "#email" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#series" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#model" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#serial_number" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#verification" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });



    });


    function check_form(click_submit) {

        $( ".error_msg" ).remove();
        var form_ok = true, error_msg = "";

        if (isEmpty($("#email").val())) {
            form_ok = false;
            $("#email").after( "<div class='error_msg'>電子信箱不能漏空</div>" );
            //error_msg += "電子信箱不能漏空\n\n";
        } else {
            var email = $("#email").val();

            var checking = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
            if (!checking.test(email)) {
                form_ok = false;
                $("#email").after( "<div class='error_msg'>電子信箱格式錯誤</div>" );
                //error_msg += "電子信箱格式錯誤\n\n";
            }
        }

        if (isEmpty($("#series").val())) {
            form_ok = false;
            $("#series").after( "<div class='error_msg'>產品系列不能漏空</div>" );
            //error_msg += "產品系列不能漏空\n\n";
        }

        if (isEmpty($("#model").val())) {
            form_ok = false;
            $("#model").after( "<div class='error_msg'>型號不能漏空</div>" );
            //error_msg += "型號不能漏空\n\n";
        }

        if (isEmpty($("#serial_number").val())) {
            form_ok = false;
            $("#serial_number").after( "<div class='error_msg'>產品序號不能漏空</div>" );
            //error_msg += "產品序號不能漏空\n\n";
        }

        if (isEmpty($("#verification").val())) {
            form_ok = false;
            $("#verification").after( "<div class='error_msg'>驗證碼不能漏空</div>" );
            //error_msg += "驗證碼不能漏空\n\n";
        }

        /*if (!form_ok) {
            //alert(error_msg);
        } else {
            $("#check_warranty").submit();
        }*/

        if(click_submit != 0 && form_ok){
            $("#check_warranty").submit();
        }

    }
</script>

<style>
    div > .error_msg{
        margin-left: 0px;
    }
</style>

<div id="header">
    <a href="index.php">
        <img src="images/logo.jpg" style="height: inherit;"/>
    </a>
</div>

<div style="margin-top: 10px;text-align: right;">
    繁體中文 | <a href="change_language.php?langcode=en&page=index">English</a>
</div>

<div style="margin-top: 60px;">
    <a href="index.php">主頁</a> > 產品保養登記
</div>

<div class="head_title">
    網上保養登記平台
</div>

<div>
    <b style="font-size: 13px;">
        <a href="http://www.synnex.com.hk" target="_blank"><img src="images/synnex_tc_logo.png" style="width: 150px;"/><br>
        聯強國際(香港)有限公司</a>
        <br>
        EIZO 中港澳獨家總代理
        <br><br>
    </b>

    <b>客戶服務專線</b><br>
    香港:(852)8101-6388<br>
    澳門:(853)2875-7235 (天網資訊科技(澳門)有限公司)<br><br>

    <b>電郵支援</b><br>
    一般查詢: <a href="mailto:info@eizo.com.cn">info@eizo.com.cn</a><br>
    技術支援: <a href="mailto:tech@eizo.com.cn">tech@eizo.com.cn</a><br><br>

</div>

<div>
    <div class="css_table">
        <div class="css_tr">
            <div class="css_td upper_table">
                <b>網上保養登記平台</b><br><br>

                此產品保養登記只適用於由聯強或其香港及澳門授權經銷商所供應之全新原裝行貨(特價品除外)。<br><br>

                由2014年7月1日起,凡購買EIZO指定型號顯示器及於購買日期起30天內成功完成網上保養登記,即享3個月保養期延長優惠或1次免費上門色彩校準服務。請按<a href="tnc_detail.php#tnc_part2" target="_blank">這裡</a> ,瞭解更多資訊。

                <br>

                <div style="margin-top: 50px;" ></div>
                <a href="warranty_registration.php" >
                    <div class="submit_btn">立即登記</div>
                </a>
            </div>

            <div class="css_td upper_table">
                <b>產品保養狀態查詢</b><br><br>

                此功能適用於已完成網上登記保養的產品。<br><br>

                <form action="check_warranty_post.php" method="post" name="check_warranty" id="check_warranty" enctype="multipart/form-data">
                    <input type="hidden" name="lang" value="tc" />
                    <div class="css_table">

                        <div class="css_tr">
                            <div class="css_td">產品系列<span style="color: red;">*</span></div>
                            <div class="css_td">
                                <select id="series" name="series" style="width: 150px;" required>
                                    <option value="">-請選擇-</option>
                                    <?php
                                        $sql 
"select * from series where status = ? and deleted = ? and region = ? order by series_code ASC";
                                        if (!(
$sth $dbh->prepare($sql))) {
                                            throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                        }

                                        if (!
$sth->execute(array("1""0""HK"))) {
                                            throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                        }

                                        
$all_series $sth->fetchAll();

                                        foreach (
$all_series as $series) {
                                            if(isset(
$_SESSION["check_series_code"]) && $_SESSION["check_series_code"] == $series["series_code"]){
                                                
$selected "selected";
                                            }else{
                                                
$selected "";
                                            }
                                            echo 
'<option value="' $series["series_code"] . '" '.$selected.'>' $series["series_code"] . '</option>';
                                        }

                                    
?>

                                </select>
                            </div>
                        </div>

                        <div class="css_tr">
                            <div class="css_td">型號<span style="color: red;">*</span></div>
                            <div class="css_td">
                                <select id="model" name="model" style="width: 150px;" required>
                                    <option value="">-請選擇-</option>
                                    <?php
                                        $sql 
"select * from model model, series series where model.series_id = series.series_id and model.status = ? and model.deleted = ? and series.status = ? and series.deleted = ? and series.region = ? and model.region = ? order by series.series_code ASC, model.model_code ASC";

                                        if (!(
$sth $dbh->prepare($sql))) {
                                            throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                        }

                                        if (!
$sth->execute(array("1""0""1""0""HK""HK"))) {
                                            throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                        }

                                        
$all_model $sth->fetchAll();

                                        foreach (
$all_model as $model) {
                                            if(isset(
$_SESSION["check_model_code"]) && $_SESSION["check_model_code"] == $model["model_code"]){
                                                
$selected "selected";
                                            }else{
                                                
$selected "";
                                            }
                                            echo 
'<option value="' $model["model_code"] . '" class="' $model["series_code"] . '" '.$selected.'>' $model["model_code"] . '</option>';
                                        }

                                    
?>
                                </select>

                            </div>
                        </div>

                        <div class="css_tr">
                            <div class="css_td">產品序號<span style="color: red;">*</span></div>
                            <div class="css_td">
                                <input type="text" name="serial_number" id="serial_number" value="<?php if(isset($_SESSION["check_serial_number"])) echo $_SESSION["check_serial_number"];?>" style="width: 300px;" required/>
                            </div>
                        </div>

                        <div class="css_tr">
                            <div class="css_td">電子信箱<span style="color: red;">*</span></div>
                            <div class="css_td">
                                <input type="text" name="email" id="email" value="<?php if(isset($_SESSION["check_email"])) echo $_SESSION["check_email"];?>" style="width: 300px;" required/>
                            </div>
                        </div>

                        <div class="css_tr">
                            <div class="css_td">驗證碼<span style="color: red;">*</span></div>
                            <div class="css_td">
                                <input type="text" class="field_textbox" name="verification" id="verification" style="width:150px" required/><br>

                                <img src="js/verification_code/captcha/vCodeImage.php?_=1" alt="Click the image to refresh"
                                     id="verify_code" name="verify_code" width="150" height="60" border="0"
                                     onclick="document.getElementById('verify_code').src='js/verification_code/captcha/vCodeImage.php?' + Math.random();" style="FILTER: wave(add=0,freq=3,lightstrength=50,phase=0,strength=3);cursor:pointer;padding-top: 5px;"/>

                                <span style="font-size: 12px; color: #808080;">按圖產生新驗證碼</span>
                            </div>
                        </div>



                        <div class="css_tr">
                            <div class="css_td">
                                <br>
                                <!--<input class="submit_btn" type="submit" value="提交" />-->
                                <div class="submit_btn" onclick="check_form(); return false;">
                                    開始
                                </div>
                            </div>

                        </div>
                    </div>
                </form>

            </div>
        </div>

    </div>

</div>

<div style="height: 80px;"></div>

</body>
</html>

<?php }else{ ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
        <link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon">
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <meta name="copyright" content="EIZO Corporation. All Rights Reserved."/>
        <meta http-equiv="Content-Style-Type" content="text/css"/>
        <meta http-equiv="Content-Script-Type" content="text/javascript"/>

        <meta name="description" content="Eizo Nanao Corporation Global Site"/>
        <meta name="keywords" content=""/>
        <title> Online Warranty Portal | EIZO</title>

    </head>
    <body id="hongkong_warranty_bg">

    <!-- real warranty content -->
    <?php
        $langcode 
"en";
    
?>
    <link href="css/language_<?=$_SESSION["langcode"]?>.css" rel="stylesheet">
    <link href="css/warranty_style.css" rel="stylesheet">
    <script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
    <script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
    <script type="text/javascript" src="js/jquery-ui-1.8.18.custom.min.js"></script>
    <script type="text/javascript" src="js/jquery.chained.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $("#model").chained("#series");
        });


        function isEmpty(str) {
            return (!str || 0 === str.length);
        }

        function isInt(value) {
            return !isNaN(value) && parseInt(value) == value;
        }

        $(function(){


            $( "#email" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#series" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#model" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#serial_number" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });

            $( "#verification" ).change(function() {
                if($(".error_msg")[0]){
                    check_form(0);
                }
            });



        });


        function check_form(click_submit) {

            $( ".error_msg" ).remove();
            var form_ok = true, error_msg = "";

            if (isEmpty($("#email").val())) {
                form_ok = false;
                $("#email").after( "<div class='error_msg'>Email cannot be empty.</div>" );
                //error_msg += "電子信箱不能漏空\n\n";
            } else {
                var email = $("#email").val();

                var checking = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
                if (!checking.test(email)) {
                    form_ok = false;
                    $("#email").after( "<div class='error_msg'>Wrong email format</div>" );
                    //error_msg += "電子信箱格式錯誤\n\n";
                }
            }

            if (isEmpty($("#series").val())) {
                form_ok = false;
                $("#series").after( "<div class='error_msg'>Series cannot be empty.</div>" );
                //error_msg += "產品系列不能漏空\n\n";
            }

            if (isEmpty($("#model").val())) {
                form_ok = false;
                $("#model").after( "<div class='error_msg'>Model cannot be empty.</div>" );
                //error_msg += "型號不能漏空\n\n";
            }

            if (isEmpty($("#serial_number").val())) {
                form_ok = false;
                $("#serial_number").after( "<div class='error_msg'>Serial Number cannot be empty.</div>" );
                //error_msg += "產品序號不能漏空\n\n";
            }

            if (isEmpty($("#verification").val())) {
                form_ok = false;
                $("#verification").after( "<div class='error_msg'>Verification Code cannot be empty.</div>" );
                //error_msg += "驗證碼不能漏空\n\n";
            }

            /*if (!form_ok) {
             //alert(error_msg);
             } else {
             $("#check_warranty").submit();
             }*/

            if(click_submit != 0 && form_ok){
                $("#check_warranty").submit();
            }

        }
    </script>

    <style>
        div > .error_msg{
            margin-left: 0px;
        }
    </style>

    <div id="header">
        <a href="index.php">
            <img src="images/logo.jpg" style="height: inherit;"/>
        </a>
    </div>

    <div style="margin-top: 10px;text-align: right;">
        <a href="change_language.php?langcode=tc&page=index">繁體中文</a> | English
    </div>

    <div style="margin-top: 60px;">
        <a href="index.php">Home</a> > Online Warranty Portal
    </div>

    <div class="head_title">
        Online Warranty Portal
    </div>

    <div>

        <b style="font-size: 13px;">
            <a href="http://www.synnex.com.hk" target="_blank"><img src="images/synnex_en_logo.png" style="width: 150px;"/><br>
                Synnex Technology International (HK) Ltd.   </a>
            <br>
            Sole distributor of  EIZO in China/ Hong Kong/ Macau
            <br><br>
        </b>

        <b>Customer Service Hotline</b><br>
        HK: (852)8101-6388<br>
        Macau: (853)2875-7235 (Netcraft Information Technology)<br><br>

        <b>E-mail Support</b><br>
        General: <a href="mailto:info@eizo.com.cn">info@eizo.com.cn</a><br>
        Technical Support: <a href="mailto:tech@eizo.com.cn">tech@eizo.com.cn</a><br><br>

    </div>

    <div>
        <div class="css_table">
            <div class="css_tr">
                <div class="css_td upper_table">
                    <b>Online Warranty Portal</b><br><br>

                    This warranty registration is applicable to brand new and genuine products supplied by Synnex and its authorized dealers in Hong Kong and Macau, excluding special priced products.<br><br>

                    Start from 1 July 2014, with purchase of EIZO selected monitors, you can enjoy 3-month Extended Warranty or a Free On-site Calibration Service for online registration within 30 days from the date of purchase. For more details, please click <a href="tnc_detail.php#tnc_part2" target="_blank">here</a>.
                    <br>

                    <div style="margin-top: 50px;" ></div>
                    <a href="warranty_registration.php" >
                        <div class="submit_btn" style="width: 200px;">REGISTER NOW</div>
                    </a>
                </div>

                <div class="css_td upper_table">
                    <b>Product Warranty Record </b><br><br>

                    This tool is applicable to pre-registered product.<br><br>

                    <form action="check_warranty_post.php" method="post" name="check_warranty" id="check_warranty" enctype="multipart/form-data">
                        <input type="hidden" name="lang" value="en" />
                        <div class="css_table">

                            <div class="css_tr">
                                <div class="css_td">Series<span style="color: red;">*</span></div>
                                <div class="css_td">
                                    <select id="series" name="series" style="width: 150px;" required>
                                        <option value="">-Please Select-</option>
                                        <?php
                                            $sql 
"select * from series where status = ? and deleted = ? and region = ? order by series_code ASC";
                                            if (!(
$sth $dbh->prepare($sql))) {
                                                throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                            }

                                            if (!
$sth->execute(array("1""0""HK"))) {
                                                throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                            }

                                            
$all_series $sth->fetchAll();

                                            foreach (
$all_series as $series) {
                                                if(isset(
$_SESSION["check_series_code"]) && $_SESSION["check_series_code"] == $series["series_code"]){
                                                    
$selected "selected";
                                                }else{
                                                    
$selected "";
                                                }
                                                echo 
'<option value="' $series["series_code"] . '" '.$selected.'>' $series["series_code"] . '</option>';
                                            }

                                        
?>

                                    </select>
                                </div>
                            </div>

                            <div class="css_tr">
                                <div class="css_td">Model<span style="color: red;">*</span></div>
                                <div class="css_td">
                                    <select id="model" name="model" style="width: 150px;" required>
                                        <option value="">-Please Select-</option>
                                        <?php
                                            $sql 
"select * from model model, series series where model.series_id = series.series_id and model.status = ? and model.deleted = ? and series.status = ? and series.deleted = ? and series.region = ? and model.region = ? order by series.series_code ASC, model.model_code ASC";

                                            if (!(
$sth $dbh->prepare($sql))) {
                                                throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                            }

                                            if (!
$sth->execute(array("1""0""1""0""HK""HK"))) {
                                                throw new 
Exception('[' $sth->errorCode() . ']: ' print_r($sth->errorInfo()));
                                            }

                                            
$all_model $sth->fetchAll();

                                            foreach (
$all_model as $model) {
                                                if(isset(
$_SESSION["check_model_code"]) && $_SESSION["check_model_code"] == $model["model_code"]){
                                                    
$selected "selected";
                                                }else{
                                                    
$selected "";
                                                }
                                                echo 
'<option value="' $model["model_code"] . '" class="' $model["series_code"] . '" '.$selected.'>' $model["model_code"] . '</option>';
                                            }

                                        
?>
                                    </select>

                                </div>
                            </div>

                            <div class="css_tr">
                                <div class="css_td">Serial Number<span style="color: red;">*</span></div>
                                <div class="css_td">
                                    <input type="text" name="serial_number" id="serial_number" value="<?php if(isset($_SESSION["check_serial_number"])) echo $_SESSION["check_serial_number"];?>" style="width: 300px;" required/>
                                </div>
                            </div>

                            <div class="css_tr">
                                <div class="css_td">Email<span style="color: red;">*</span></div>
                                <div class="css_td">
                                    <input type="text" name="email" id="email" value="<?php if(isset($_SESSION["check_email"])) echo $_SESSION["check_email"];?>" style="width: 300px;" required/>
                                </div>
                            </div>

                            <div class="css_tr">
                                <div class="css_td">Verification Code<span style="color: red;">*</span></div>
                                <div class="css_td">
                                    <input type="text" class="field_textbox" name="verification" id="verification" style="width:150px" required/><br>

                                    <img src="js/verification_code/captcha/vCodeImage.php?_=1" alt="Click the image to refresh"
                                         id="verify_code" name="verify_code" width="150" height="60" border="0"
                                         onclick="document.getElementById('verify_code').src='js/verification_code/captcha/vCodeImage.php?' + Math.random();" style="FILTER: wave(add=0,freq=3,lightstrength=50,phase=0,strength=3);cursor:pointer;padding-top: 5px;"/>

                                    <span style="font-size: 12px; color: #808080;">Click image to refresh</span>
                                </div>
                            </div>



                            <div class="css_tr">
                                <div class="css_td">
                                    <br>
                                    <!--<input class="submit_btn" type="submit" value="提交" />-->
                                    <div class="submit_btn" onclick="check_form(); return false;" style="width: 130px;">
                                        START
                                    </div>
                                </div>

                            </div>
                        </div>
                    </form>

                </div>
            </div>

        </div>

    </div>

    <div style="height: 80px;"></div>

    </body>
    </html>

<?php ?>