-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
1075 lines (768 loc) · 38 KB
/
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB">
<head>
<base href="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Track - PosLaju, Pos Ekspress, Skynet, City Link, GDEX, Nationwide Express, TA-Q-BIN (Yamato), Sure Reach, ABX Express, FedEx, DHL, UPS, TNT, Aramex, Kangaroo Express, Airpak Express, AsiaXpress, DPEX</title>
<link href="favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/themes/blue/pace-theme-loading-bar.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.1.3/js.cookie.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js.source"></script>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2755431019590522",
enable_page_level_ads: true
});
</script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '279228452852659');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=279228452852659&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<style type="text/css">
/* MAX IMAGE WIDTH */
img {
height:auto !important;
max-width:100% !important;
-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box !important; /* Firefox, other Gecko */
box-sizing: border-box !important; /* Opera/IE 8+ */
}
.full_width {
width:100% !important;
-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box !important; /* Firefox, other Gecko */
box-sizing: border-box !important; /* Opera/IE 8+ */
}
.S5_submenu_itemTablet{
background:none !important;
}
#s5_responsive_modile_drop_down_wrap input {
width:96% !important;
}
#s5_responsive_mobile_drop_down_search input {
width:100% !important;
}
@media screen and (max-width: 750px){
body {
height:100% !important;
position:relative !important;
padding-bottom:48px !important;
}
}
@media screen and (max-width: 970px){
#subMenusContainer .S5_subtext {
width:85%;
}
}
#s5_responsive_mobile_bottom_bar, #s5_responsive_mobile_top_bar {
background:#0B0B0B;
background: -moz-linear-gradient(top, #272727 0%, #0B0B0B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#272727), color-stop(100%,#0B0B0B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* IE10+ */
background: linear-gradient(top, #272727 0%,#0B0B0B 100%); /* W3C */
font-family: Open Sans !important;
}
.s5_responsive_mobile_drop_down_inner, .s5_responsive_mobile_drop_down_inner input, .s5_responsive_mobile_drop_down_inner button, .s5_responsive_mobile_drop_down_inner .button, #s5_responsive_mobile_drop_down_search .validate {
font-family: Open Sans !important;
}
.s5_responsive_mobile_drop_down_inner button:hover, .s5_responsive_mobile_drop_down_inner .button:hover {
background:#0B0B0B !important;
}
#s5_responsive_mobile_drop_down_menu, #s5_responsive_mobile_drop_down_menu a, #s5_responsive_mobile_drop_down_login a {
font-family: Open Sans !important;
color:#FFFFFF !important;
}
#s5_responsive_mobile_bar_active, #s5_responsive_mobile_drop_down_menu .current a, .s5_responsive_mobile_drop_down_inner .s5_mod_h3, .s5_responsive_mobile_drop_down_inner .s5_h3_first {
color:#73A0CF !important;
}
.s5_responsive_mobile_drop_down_inner button, .s5_responsive_mobile_drop_down_inner .button {
background:#73A0CF !important;
}
#s5_responsive_mobile_drop_down_menu .active ul li, #s5_responsive_mobile_drop_down_menu .current ul li a, #s5_responsive_switch_mobile a, #s5_responsive_switch_desktop a, #s5_responsive_modile_drop_down_wrap {
color:#FFFFFF !important;
}
#s5_responsive_mobile_toggle_click_menu span {
border-right:solid 1px #272727;
}
#s5_responsive_mobile_toggle_click_menu {
border-right:solid 1px #0B0B0B;
}
#s5_responsive_mobile_toggle_click_search span, #s5_responsive_mobile_toggle_click_register span, #s5_responsive_mobile_toggle_click_login span, #s5_responsive_mobile_scroll a {
border-left:solid 1px #272727;
}
#s5_responsive_mobile_toggle_click_search, #s5_responsive_mobile_toggle_click_register, #s5_responsive_mobile_toggle_click_login, #s5_responsive_mobile_scroll {
border-left:solid 1px #0B0B0B;
}
.s5_responsive_mobile_open, .s5_responsive_mobile_closed:hover, #s5_responsive_mobile_scroll:hover {
background:#272727;
}
#s5_responsive_mobile_drop_down_menu .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_register .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_login .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_search .s5_responsive_mobile_drop_down_inner {
background:#272727;
}
.s5_wrap {
max-width:1300px !important;
}
@media screen and (min-width: 1300px){
#s5_right_top_wrap {
width:0px !important;
}
#s5_right_inset_wrap {
width:0px !important;
}
#s5_right_wrap {
width:0px !important;
}
#s5_right_bottom_wrap {
width:0px !important;
}
#s5_left_top_wrap {
width:0px !important;
}
#s5_left_inset_wrap {
width:0px !important;
}
#s5_left_wrap {
width:0px !important;
}
#s5_left_bottom_wrap {
width:0px !important;
}
#s5_right_column_wrap {
width:0px !important;
margin-left:-0px !important;
}
#s5_left_column_wrap {
width:0px !important;
}
#s5_center_column_wrap_inner {
margin-left:0px !important;
margin-right:0px !important;
}
}
@media screen and (max-width: 970px){
#s5_right_top_wrap {
width:0px !important;
}
#s5_right_inset_wrap {
width:0px !important;
}
#s5_right_wrap {
width:0px !important;
}
#s5_right_bottom_wrap {
width:0px !important;
}
#s5_left_top_wrap {
width:0px !important;
}
#s5_left_inset_wrap {
width:0px !important;
}
#s5_left_wrap {
width:0px !important;
}
#s5_left_bottom_wrap {
width:0px !important;
}
#s5_right_column_wrap {
width:0px !important;
margin-left:-0px !important;
}
#s5_left_column_wrap {
width:0px !important;
}
#s5_center_column_wrap_inner {
margin-left:0px !important;
margin-right:0px !important;
}
}
</style>
<script type="text/javascript" src="shape5_vertex/js/s5_flex_menu.js"></script>
<link rel="stylesheet" href="shape5_vertex/css/s5_flex_menu.css" type="text/css" />
<link href="shape5_vertex/css/template_default.css" rel="stylesheet" type="text/css" />
<link href="shape5_vertex/css/template.css" rel="stylesheet" type="text/css" />
<!--link href="shape5_vertex/css/com_content.css" rel="stylesheet" type="text/css" /-->
<link href="shape5_vertex/css/editor.css" rel="stylesheet" type="text/css" />
<link href="shape5_vertex/css/thirdparty.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans" />
<link href="shape5_vertex/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<script type="text/javascript" src="shape5_vertex/js/s5_font_adjuster.js"></script>
<link rel="stylesheet" type="text/css" href="shape5_vertex/css/s5_responsive_bars.css" />
<link href="shape5_vertex/css/s5_responsive_hide_classes.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="shape5_vertex/css/s5_responsive.css" />
<link rel="stylesheet" type="text/css" href="shape5_vertex/css/custom.css" />
<!-- Info Slide Script - Called in header so css validates -->
<!-- File compression. Needs to be called last on this file -->
<!-- The excluded files, listed below the compressed php files, are excluded because their calls vary per device or per browser. Included compression files are only ones that have no conditions and are included on all devices and browsers. Otherwise unwanted css will compile in the compressed files. -->
<style type="text/css">
body {font-family: 'Open Sans',Helvetica,Arial,Sans-Serif ;
background:#F0F0F0;
}
#s5_search input, #s5_menu_wrap, .s5_mod_h3, #subMenusContainer, h2 {
font-family: Open Sans;
}
#s5_menu_outer_wrap {
height:40px;
overflow:hidden;
}
.S5_parent_subtext {
display:none;
}
#s5_nav li {
height:37px;
}
#s5_search input {
margin-top:0px;
}
#s5_header_area_inner2, .module_round_box, .module_round_box-dark, #s5_component_wrap, #s5_footer_area_inner2 {
-webkit-box-shadow: 0 0px 8px #BDBDBD;
-moz-box-shadow: 0 0px 8px #BDBDBD;
box-shadow: 0 0px 8px #BDBDBD;
}
a, .module_round_box .s5_h3_first, .module_round_box-none .s5_h3_first, .module_round_box ul.menu .current a, h2, h4, #s5_md_outer_wrap h3 {
color:#73A0CF;
}
#s5_nav li.active a, #s5_nav li.mainMenuParentBtnFocused a, #s5_nav li:hover a, .btn-link {
color:#73A0CF;
}
.btn-primary, .button, li.pagenav-next, li.pagenav-prev, .validate, .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a, .dropdown-menu .active > a, .dropdown-menu .active > a:hover, .nav-list > .active > a, .nav-list > .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .btn-group.open .btn-primary.dropdown-toggle, .pager a {
background:#73A0CF;
}
#subMenusContainer div.s5_sub_wrap ul, #subMenusContainer div.s5_sub_wrap_rtl ul, #subMenusContainer div.s5_sub_wrap_lower ul, #subMenusContainer div.s5_sub_wrap_lower_rtl ul {
border-bottom:solid 3px #73A0CF;
}
/* k2 stuff */
div.itemHeader h2.itemTitle, div.catItemHeader h3.catItemTitle, h3.userItemTitle a, #comments-form p, #comments-report-form p, #comments-form span, #comments-form .counter, #comments .comment-author, #comments .author-homepage,
#comments-form p, #comments-form #comments-form-buttons, #comments-form #comments-form-error, #comments-form #comments-form-captcha-holder {font-family: 'Open Sans',Helvetica,Arial,Sans-Serif ;}
.s5_wrap{width:100%;}
</style>
</head>
<body id="s5_body">
<div id="s5_scrolltotop"></div>
<!-- Top Vertex Calls -->
<!-- Call top bar for mobile devices if layout is responsive -->
<!-- s5_responsive_mobile_top_bar_spacer must be called to keep a space at the top of the page since s5_responsive_mobile_top_bar_wrap is position absolute. -->
<div id="s5_responsive_mobile_top_bar_spacer"></div>
<!-- s5_responsive_mobile_top_bar_wrap must be called off the page and not with display:none or it will cause issues with the togglers. -->
<div id="s5_responsive_mobile_top_bar_wrap" style="margin-top:-50000px;position:absolute;z-index:20;top:0px">
<div id="s5_responsive_mobile_top_bar" class="s5_responsive_mobile_bar_light">
<div id="s5_responsive_mobile_toggle_click_menu" style="display:block;float:left">
<span></span>
</div>
<div id="s5_responsive_mobile_bar_active">
<span>
Track </span>
</div>
<div id="s5_responsive_mobile_toggle_click_login" style="display:none;float:right">
<span></span>
</div>
<div id="s5_responsive_mobile_toggle_click_register" style="display:none;float:right">
<span></span>
</div>
<div id="s5_responsive_mobile_toggle_click_search" style="display:none;float:right">
<span></span>
</div>
<div style="clear:both;height:0px"></div>
</div>
<div id="s5_responsive_modile_drop_down_wrap" class="s5_responsive_modile_drop_down_wrap_loading">
<div id="s5_responsive_mobile_drop_down_menu">
<div class="s5_responsive_mobile_drop_down_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
<ul class="menu">
<li class="item-101 current active"><a href="index.html" >Track</a></li><li class="item-102"><a href="#faq" >FAQ</a></li><li class="item-103"><a href="#privacy-policy" >Privacy Policy</a></li><li class="item-107"><a href="#terms-of-use" >Terms of Use</a></li><li class="item-108"><a href="#zbwid-25ec64a8" >Contact Us</a></li></ul>
</div>
</div>
<div id="s5_responsive_mobile_drop_down_search">
<div class="s5_responsive_mobile_drop_down_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
</div>
</div>
<div id="s5_responsive_mobile_drop_down_login">
<div class="s5_responsive_mobile_drop_down_inner" id="s5_responsive_mobile_drop_down_login_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
</div>
</div>
<div id="s5_responsive_mobile_drop_down_register">
<div class="s5_responsive_mobile_drop_down_inner" id="s5_responsive_mobile_drop_down_register_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
</div>
</div>
</div>
</div>
<script language="JavaScript" type="text/javascript">
var s5_responsive_login_url = "";
var s5_responsive_register_url = "";
</script>
<script type="text/javascript" language="javascript" src="shape5_vertex/js/s5_responsive_mobile_bar.js?t=1"></script>
<!-- Fixed Tabs -->
<!-- Drop Down -->
<!-- Body Padding Div Used For Responsive Spacing -->
<div id="s5_body_padding">
<!-- Header -->
<div id="s5_header_area1">
<div id="s5_header_area2">
<div id="s5_header_area_inner" class="s5_wrap">
<div id="s5_header_area_inner2">
<div id="s5_header_wrap">
<img alt="logo" style="height:0px;width:255px" src="images/expresstrack.png" id="s5_logo" onclick="window.document.location.href='/'" />
<div id="s5_menu_wrap">
<ul id='s5_nav' class='menu'><li class='active'><span class='s5_level1_span1'><span class='s5_level1_span2'><a href='#'><span onclick='window.document.location.href="/"'>Track</span></a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href='#faq'><span onclick='window.document.location.href="#faq"'>FAQ</span></a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href='#privacy-policy'><span onclick='window.document.location.href="#privacy-policy"'>Privacy Policy</span></a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href='#terms-of-use'><span onclick='window.document.location.href="#terms-of-use"'>Terms of Use</span></a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href='#zbwid-25ec64a8'><span onclick='window.document.location.href="#zbwid-25ec64a8"'>Contact Us</span></a></span></span></li></ul> <div style="clear:both; height:0px"></div>
</div>
<div style="clear:both; height:0px"></div>
</div>
<div id="s5_breadcrumb_fonts_wrap">
<div id="s5_social_wrap1">
<div id="s5_social_wrap_inner">
<div id="fontControls"></div>
</div>
</div>
<div style="clear:both;height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<!-- End Header -->
<!-- Top Row1 -->
<div id="s5_top_row1_area1">
<div id="s5_top_row1_area2">
<div id="s5_top_row1_area_inner" class="s5_wrap">
<div id="s5_top_row1_wrap">
<div id="s5_top_row1">
<div id="s5_top_row1_inner">
<div id="s5_pos_top_row1_1" class="s5_float_left" style="width:30%">
<div class="module_round_box_outer">
<div class="module_round_box">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="bannergroup">
<div class="banneritem">
<div class="google-ads" align="center">
<?php require('external/adsense/vertical.php'); ?>
</div>
<div class="clr"></div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
<div class="module_round_box_outer">
<!--div class="module_round_box">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="custom" >
<?php require('external/facebook.php'); ?>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div-->
</div>
</div>
<div id="s5_pos_top_row1_2" class="s5_float_left" style="width:70%">
<div class="module_round_box_outer">
<div class="module_round_box">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="s5_mod_h3_outer">
<h3 class="s5_mod_h3"><span class="s5_h3_first">Track </span> Shipment</h3>
</div>
<div align="center">
<div class="google-ads">
<?php require('external/adsense/horizontal.php'); ?>
</div>
<div id="steps">
<iframe name="autocompleteframe" style="display: none;"></iframe>
<form id="autocompleteform" action="/" target="autocompleteframe" onSubmit="return false;">
<div>
<label for="trackingno">Step 1. Enter your tracking number or shipment number below</label>
</div>
<div>
<input type="text" id="trackingno" value="">
</div>
</form>
</div>
<div id="steps">
<label>Step 2. Select the courier company for your shipment below</label>
</div>
<div id="rowdivider">
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="poslaju" data-courier="001" data-display="1">
<label id="courierlabel" for="poslaju">
<img src="images/logos/poslaju.png" title="Pos Laju" alt="Pos Laju">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="posekspress" data-courier="002" data-display="1">
<label id="courierlabel" for="posekspress">
<img src="images/logos/posekspress.png" title="Pos Ekspress" alt="Pos Ekspress">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="skynet" data-courier="003" data-display="1">
<label id="courierlabel" for="skynet">
<img src="images/logos/skynet.png" title="Skynet" alt="Skynet">
</label>
</div>
<!--/div-->
<div id="columndivider"></div>
<!--div id="rowdivider"-->
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="citylink" data-courier="004" data-display="3">
<label id="courierlabel" for="citylink">
<img src="images/logos/citylink.png" title="Citylink" alt="Citylink">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="nationwide" data-courier="005" data-display="3">
<label id="courierlabel" for="nationwide">
<img src="images/logos/nationwide.gif" title="Nationwide" alt="Nationwide">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="gdex" data-courier="006" data-display="3">
<label id="courierlabel" for="gdex">
<img src="images/logos/gdex.jpg" title="GDEX" alt="GDEX">
</label>
</div>
<!--/div-->
<div id="columndivider"></div>
<!--div id="rowdivider"-->
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="taqbin" data-courier="010" data-display="3">
<label id="courierlabel" for="taqbin">
<img src="images/logos/taqbin.gif" title="TA-Q-BIN" alt="TA-Q-BIN">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="surereach" data-courier="011" data-display="2">
<label id="courierlabel" for="surereach">
<img src="images/logos/surereach.png" title="Sure Reach" alt="Sure Reach">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="abxexpress" data-courier="008" data-display="3">
<label id="courierlabel" for="abxexpress">
<img src="images/logos/abxexpress.png" title="ABX Express" alt="ABX Express">
</label>
</div>
<!--/div-->
<div id="columndivider"></div>
<!--div id="rowdivider"-->
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="fedex" data-courier="014" data-display="3">
<label id="courierlabel" for="fedex">
<img src="images/logos/fedex.png" title="FedEx" alt="FedEx">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="dhl" data-courier="015" data-display="3">
<label id="courierlabel" for="dhl">
<img src="images/logos/dhl.png" title="DHL" alt="DHL">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="ups" data-courier="016" data-display="3">
<label id="courierlabel" for="ups">
<img src="images/logos/ups.jpg" title="UPS" alt="UPS">
</label>
</div>
<!--/div-->
<div id="columndivider"></div>
<!--div id="rowdivider"-->
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="tnt" data-courier="017" data-display="3">
<label id="courierlabel" for="tnt">
<img src="images/logos/tnt.png" title="TNT" alt="TNT">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="aramex" data-courier="018" data-display="3">
<label id="courierlabel" for="aramex">
<img src="images/logos/aramex.jpg" title="Aramex" alt="Aramex">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="kangaroo" data-courier="007" data-display="3">
<label id="courierlabel" for="kangaroo">
<img src="images/logos/kangaroo.jpg" title="Kangaroo" alt="Kangaroo">
</label>
</div>
<!--/div-->
<div id="columndivider"></div>
<!--div id="rowdivider"-->
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="airpak" data-courier="009" data-display="2">
<label id="courierlabel" for="airpak">
<img src="images/logos/airpak.jpg" title="Airpak" alt="Airpak">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="asiaxpress" data-courier="012" data-display="3">
<label id="courierlabel" for="asiaxpress">
<img src="images/logos/asiaxpress.gif" title="Asia Xpress" alt="Asia Xpress">
</label>
</div>
<div id="columndivider"></div>
<div style="display: inline-block;">
<input class="tracking" type="radio" name="courier" id="dpex" data-courier="013" data-display="2">
<label id="courierlabel" for="dpex">
<img src="images/logos/dpex.jpg" title="DPEX" alt="DPEX">
</label>
</div>
<div id="columndivider"></div>
</div>
<div id="results"></div>
<div class="google-ads">
<?php /*require('external/adsense/horizontal.php');*/ ?>
</div>
</div> <div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Top Row1 -->
<!-- Top Row2 -->
<!-- End Top Row2 -->
<!-- Top Row3 -->
<!-- End Top Row3 -->
<!-- Center area -->
<div id="s5_center_area1">
<div id="s5_center_area2">
<div id="s5_center_area_inner" class="s5_wrap">
<!-- Above Columns Wrap -->
<!-- End Above Columns Wrap -->
<!-- Columns wrap, contains left, right and center columns -->
<div id="s5_columns_wrap">
<div id="s5_columns_wrap_inner">
<div id="s5_center_column_wrap">
<div id="s5_center_column_wrap_inner" style="margin-left:0px; margin-right:0px;">
<div id="s5_component_wrap">
<div id="s5_component_wrap_inner">
<div id="system-message-container">
</div>
<div class="blog-featured">
<h1>
Track - PosLaju, Pos Ekspress, Skynet, City Link, GDEX, Nationwide Express, TA-Q-BIN (Yamato), Sure Reach, ABX Express, FedEx, DHL, UPS, TNT, Aramex, Kangaroo Express, Airpak Express, AsiaXpress, DPEX </h1>
</div>
<div style="clear:both;height:0px"></div>
</div>
</div>
</div>
</div>
<!-- Left column -->
<!-- End Left column -->
<!-- Right column -->
<!-- End Right column -->
</div>
</div>
<!-- End columns wrap -->
<!-- Below Columns Wrap -->
<!-- End Below Columns Wrap -->
</div>
</div>
</div>
<!-- End Center area -->
<!-- Bottom Row1 -->
<div id="s5_bottom_row1_area1">
<div id="s5_bottom_row1_area2">
<div id="s5_bottom_row1_area_inner" class="s5_wrap">
<div id="s5_bottom_row1_wrap">
<div id="s5_bottom_row1">
<div id="s5_bottom_row1_inner">
<div id="s5_pos_bottom_row1_1" class="s5_float_left" style="width:100%">
<div class="module_round_box_outer">
<div class="module_round_box">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="s5_mod_h3_outer">
<h3 class="s5_mod_h3"><span class="s5_h3_first">Frequently </span> Asked Questions (FAQ)</h3>
</div>
<div class="custom" >
<p><span style="color: #73a0cf;">1. What is ExpressTrack.net?</span><br /><br />ExpressTrack.net is your one-stop center providing you with an easy and convenient way for tracking your deliveries and shipments online. You can select from a list of local and international courier companies in order to track and trace the latest delivery status of your shipment.<br /><br /> <span style="color: #73a0cf;">2. Who should use ExpressTrack.net?</span><br /><br />Anyone can use ExpressTrack.net to track the status of their shipment online.<br /><br />If you are a seller selling products online, you may ask your buyer to visit ExpressTrack.net to track the delivery status of the product that you are selling and delivering to them.<br /><br />If you are a buyer purchasing a product online, you may use ExpressTrack.net to track the status of your parcel using the tracking number or shipment number that has been provided to you by your seller.<br /><br /> <span style="color: #73a0cf;">3. How do I use ExpressTrack.net?</span><br /><br />You can use ExpressTrack.net in 2 simple steps. The first step is to enter your tracking number or shipment number and the second step is to select the courier company for your shipment. The results or updated delivery status of your shipment will be shown immediately if your tracking or shipment number is available on the courier company's tracking system.<br /><br /> <span style="color: #73a0cf;">4. Where can I find my tracking number or shipment number?</span><br /><br />Your shipment number or tracking number is usually found on your consignment note or airway bill which is a form that you would fill up before you send a document or a parcel to another person.<br /><br />If you are waiting for a shipment to be delivered, the tracking number or shipment number is usually provided by the person who will be sending the shipment to you.<br /><br /> <span style="color: #73a0cf;">5. Why are there no delivery updates or results shown after I have entered my tracking number and selected the courier company for my shipment?</span><br /><br />There are usually 2 reasons to this. The first reason is because the courier company has not updated the status of the shipment in their tracking system or the system is unavailable at that time. The second reason is because the person who is sending the shipment to you has not arranged for shipment with the courier company or has provided an incorrect tracking number or shipment number to you.<br /><br /> <span style="color: #73a0cf;">6. Which courier companies are available on ExpressTrack.net?</span><br /><br />We currently have a total of 18 courier companies available on ExpressTrack.net. The list includes Pos Laju, Pos Ekspress, Skynet, City Link, Nationwide Express, GDEX, TA-Q-BIN (Yamato), Sure Reach, ABX Express, FedEx, DHL, UPS, TNT, Aramex, Kangaroo Express, Airpak Express, AsiaXpress, DPEX. If you would like us to add a new courier company in our list, please feel free to contact us.<br /><br /> <span style="color: #73a0cf;">7. Are you associated with any of the courier companies?</span><br /><br />No, we are not associated with any of the courier companies listed on this website. As an example, we provide a solution for <a href="index.html">Pos Laju tracking</a> services but we are not affiliated or associated with Pos Laju or Pos Malaysia. We send the tracking or shipment number to the courier company's tracking system and the tracking results will be generated from their system. For example, you may enter your tracking number to track your Skynet shipments and the results will be generated by the tracking system from Skynet.<br /><br />Our main objective is to provide a convenient solution for tracking your shipments online with courier and delivery services available in Malaysia.<br /><br /> <span style="color: #73a0cf;">8. How can I contact the owner of this website?</span><br /><br />For advertisement opportunities or other inquiries, you may contact us at expresstrack.net [at] gmail.com</p></div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Bottom Row1 -->
<!-- Bottom Row2 -->
<div id="s5_bottom_row2_area1">
<div id="s5_bottom_row2_area2">
<div id="s5_bottom_row2_area_inner" class="s5_wrap">
<div id="s5_bottom_row2_wrap">
<div id="s5_bottom_row2">
<div id="s5_bottom_row2_inner">
<div id="s5_pos_bottom_row2_1" class="s5_float_left" style="width:100%">
<div class="module_round_box_outer">
<div class="module_round_box">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="s5_mod_h3_outer">
<h3 class="s5_mod_h3"><span class="s5_h3_first">Recommended </span> Links</h3>
</div>
<div class="custom" >
<div align="center">
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.poslaju.com.my/" target="_blank">Pos Laju</a><br /><a href="http://www.pos.com.my/" target="_blank">Pos Ekspress</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.skynet.com.my/" target="_blank">Skynet</a><br /><a href="http://www.citylinkexpress.com/main.php" target="_blank">Citylink</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.nationwide2u.com/" target="_blank">Nationwide</a><br /><a href="http://www.gdexpress.com/" target="_blank">GDEX</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://my.ta-q-bin.com/" target="_blank">TA-Q-BIN</a><br /><a href="http://www.sure-reach.com/" target="_blank">Sure Reach</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.abxexpress.com.my/" target="_blank">ABX Express</a><br /><a href="http://www.fedex.com/" target="_blank">FedEx</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.dhl.com.my/" target="_blank">DHL</a><br /><a href="http://www.ups.com/" target="_blank">UPS</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.tnt.com/" target="_blank">TNT</a><br /><a href="http://www.aramex.com/" target="_blank">Aramex</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.kangaroo.com.my/" target="_blank">Kangaroo</a><br /><a href="http://www.airpak-express.com/" target="_blank">Airpak</a></p>
</div>
<div style="display: inline-block; margin-right: 50px;">
<p style="text-align: left;"><a href="http://www.asiaxpress.net.my/" target="_blank">Asia Xpress</a><br /><a href="http://www.dpex.com" target="_blank">DPEX</a></p>
</div>
</div></div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Bottom Row2 -->
<!-- Bottom Row3 -->
<!-- End Bottom Row3 -->
<!-- Footer Area -->
<div id="s5_footer_area1">
<div id="s5_footer_area2">
<div id="s5_footer_area_inner" class="s5_wrap">
<div id="s5_footer_area_inner2">
<div id="s5_footer_module">
<div class="moduletable">
<div class="custom" >
<p style="text-align: center;">Copyright © 2013 ExpressTrack.net. All Rights Reserved.</p></div>
</div>
</div>
<div id="s5_bottom_menu_wrap">
</div>