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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>oneCMS - One Solution Limited</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <link type="text/css" rel="stylesheet" href="css/style.css" /> <link rel="icon" href="images/favi.ico" /> </head> <body> <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0"> <!-- Login --> <form id="form1" name="form1" method="post" action=""> <tr> <td height="40" align="right" valign="middle" class="login">Login ID <input name="loginid" type="text" id="loginid" /> Password <input name="password" type="password" id="password" /> <input type="submit" name="Submit" value="Enter" /> <a href="#">Forget ?</a> </td> </tr></form> <!-- Login End --> <!-- Flash --> <tr> <td height="430" align="left" valign="top" background="images/contactusflashbg.jpg"><script type="text/javascript" src="js/objectSwap.js"></script><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="430"> <param name="movie" value="flash/mainflash.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <embed src="flash/mainflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="430"></embed> </object></td> </tr> <!-- Flash End --> <!-- Content --> <tr> <td height="400" align="left" valign="top"><table width="790" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="80" class="titlename">Contact Us </td> </tr> <tr> <td class="txt"><p class="titlename18">One Solution Limited</p> <p> Office Hours: 9:00 A.M. to 6:00 P.M. (Mon - Fri), 9:00 A.M. to 1:00 P.M. (Sat)<br /> Tel: (852) 3189 9000<br /> Fax: (852) 3189 9099 <br /> E-mail: <a href="mailto:tarychung@allinonemuaythai.com">info@onecms.hk</a><br /> <br /> <strong class="txtmaincolor">Contact Address</strong><br /> Unit E, 6/F., Camelpaint Buildings Block 3, 60 Hoi Yuen Road, Kwun Tong, Kowloon, Hong Kong<br /> </p> <form action="sendEmail.php" method="post" name="order" id="order"> <table width="579" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="25" colspan="2" align="center" class="txt"><strong> </strong></td> </tr> <tr> <td width="145" height="25" align="right" class="txt"><strong> Name: </strong></td> <td width="434" class="txt"><input name="gender" type="radio" value="Mr." checked> Mr. <input name="gender" type="radio" value="Ms."> Ms. <input type="text" name="name" maxlength="50" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> Company Name: </strong></td> <td class="txt"><input name="coname" type="text" class="txt" id="coname" size="48" maxlength="50" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> Tel : </strong></td> <td class="txt"><input type="text" name="tel" maxlength="20" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> Fax: </strong></td> <td class="txt"><input type="text" name="fax" maxlength="20" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> E-Mail: </strong></td> <td class="txt"><input type="text" name="email" maxlength="50" size="48" class="txt" /></td> </tr> <tr> <td height="25" align="right" valign="top" class="txt"><strong> Enquiry: </strong></td> <td width="434" class="txt"><textarea name="message" cols="50" rows="8" class="txt"></textarea></td> </tr> <tr align="center"> <td height="20" colspan="2"> </td> </tr> <tr align="center"> <td height="20" colspan="2"><input name="Submit" type="submit" value="Submit" /> <input name="Reset" type="reset" value="Reset"></td> </tr> <tr align="center"> <td height="20" colspan="2"> </td> </tr> </table> </form></td> </tr>
</table></td> </tr> <!-- Content End --> <!-- page span --> <tr> <td height="30" align="left" valign="top"> </td> </tr> <!-- page span End --> </table> <!-- Footer --> <div id="footer"><br /> <p align="center" class="footer-menu"><a href="index.php">Home</a> | <a href="contactus.php">Contact Us</a> | <a href="sitemap.php">Sitemap</a><br /> © Copyright 2009 <a href="http://www.onesolution.com.hk">One Solution Limited</a>. All Rights Reserved</p> </div> <!-- Footer End --> </body> </html>
|