master
ycc 9 years ago
commit a4be192116

@ -0,0 +1,12 @@
staging:
script:
- curl -sSf http://202.103.68.144:8001/please_dont_delete_this_file_4a4f500ae61d9e44b931d9f72fb14aaf95517b7e.php?branch=develop
only:
- develop
production:
script:
- curl -sSf http://184.172.103.199:6001/please_dont_delete_this_file_4a4f500ae61d9e44b931d9f72fb14aaf95517b7e.php?branch=master
only:
- master
- /^deploy-.*$/

@ -0,0 +1,24 @@
RewriteEngine on
RewriteBase ./
#RewriteCond %{HTTP_HOST} ^asiahighlights.com$
#RewriteRule ^(.*)$ https:/www.asiahighlights.com$1 [R=301]
RewriteCond %{SERVER_PORT_SECURE} ^0$
RewriteRule ^(.*)$ https://www.asiahighlights.com$1 [R=301]
RewriteRule ^/guide/$ /vietnam/ [R=301]
RewriteRule ^/$ /index.php/information/detail/ [U,L]
RewriteRule ^(/contact-us.htm|/about-us.htm|/tour/|/tour/tour-detail.htm|/privacy.htm|/terms-of-use.htm)$ /index.php/information/detail/ [U,L]
RewriteRule ^/(tours|vietnam|guide|cambodia|laos|myanmar|thailand|southeast-asia)/.*$ /index.php/information/detail/ [U,L]
#orders
RewriteRule ^/create-my-trip.htm$ /index.php/orders/tailormade/ [U,L]
RewriteRule ^/orders/(tailormade_thankyou|tailormade_save|contactus_save|contactus_thankyou|asia_tour|asia_tour_save|asia_tour_thankyou)$ /index.php/orders/$1 [U,L]
#error
RewriteRule ^/error/(.*)$ /index.php/error/$1 [U,L]
RewriteRule ^/redirect/(.*)$ /index.php/welcome/redirect/$1 [U,L]

@ -0,0 +1,22 @@
RewriteEngine on
#RewriteCond %{HTTP_HOST} ^asiahighlights.com$
#RedirectRule ^(.*)$ https:/www.asiahighlights.com$1 [R=301]
RewriteCond %{SERVER_PORT_SECURE} ^0$
RedirectRule ^(.*)$ https://www.asiahighlights.com$1 [R=301]
RedirectRule ^/guide/$ /vietnam/ [R=301]
RewriteRule ^/$ /index.php/information/detail/ [U,L]
RewriteRule ^(/contact-us.htm|/about-us.htm|/tour/|/tour/tour-detail.htm|/privacy.htm|/terms-of-use.htm)$ /index.php/information/detail/ [U,L]
RewriteRule ^/(tours|vietnam|guide|cambodia|laos|myanmar|thailand|southeast-asia)/.*$ /index.php/information/detail/ [U,L]
#orders
RewriteRule ^/create-my-trip.htm$ /index.php/orders/tailormade/ [U,L]
RewriteRule ^/orders/(tailormade_thankyou|tailormade_save|contactus_save|contactus_thankyou|asia_tour|asia_tour_save|asia_tour_thankyou)$ /index.php/orders/$1 [U,L]
#error
RewriteRule ^/error/(.*)$ /index.php/error/$1 [U,L]
RewriteRule ^/redirect/(.*)$ /index.php/welcome/redirect/$1 [U,L]

@ -0,0 +1,2 @@
亚洲项目组的网站使用CI2框架PHP5.6MSSQL SERVER 2008

218
ah.php

@ -0,0 +1,218 @@
<?php
//每个网站都要定义一些常量如站点code小组等没有这些变量框架运行报错
define('CONST_SITE_DOMAIN', 'www.asiahighlights.com'); //站点域名
define('CONST_SITE_CODE', 'ah'); //站点code
define('CONST_SITE_ID', 141); //站点SN
define('CONST_SITE_LGC', 1); //站点语种
define('CONST_SITE_DEPARTMENT', 28); //DepartmentInfo表DEI_SN
define('CONST_SITE_CURRENCY', 'RMB'); //货币
define('CONST_SITE_SERVICENAME', 'lissy');
define('CONST_SITE_SERVICEEMAIL', 'contact@asiahighlights.com');
/*
*---------------------------------------------------------------
* APPLICATION ENVIRONMENT
*---------------------------------------------------------------
*
* You can load different configurations depending on your
* current environment. Setting the environment also influences
* things like logging and error reporting.
*
* This can be set to anything, but default usage is:
*
* development
* testing
* production
*
* NOTE: If you change these, also change the error_reporting() code below
*
*/
define('ENVIRONMENT', 'development');
/*
*---------------------------------------------------------------
* ERROR REPORTING
*---------------------------------------------------------------
*
* Different environments will require different levels of error reporting.
* By default development will show errors but testing and live will hide them.
*/
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(E_ALL);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
/*
*---------------------------------------------------------------
* SYSTEM FOLDER NAME
*---------------------------------------------------------------
*
* This variable must contain the name of your "system" folder.
* Include the path if the folder is not in the same directory
* as this file.
*
*/
$system_path = 'D:/Dropbox/wwwroot/system';//../system
/*
*---------------------------------------------------------------
* APPLICATION FOLDER NAME
*---------------------------------------------------------------
*
* If you want this front controller to use a different "application"
* folder then the default one you can set its name here. The folder
* can also be renamed or relocated anywhere on your server. If
* you do, use a full server path. For more info please see the user guide:
* http://codeigniter.com/user_guide/general/managing_apps.html
*
* NO TRAILING SLASH!
*
*/
$application_folder = 'D:/Dropbox/wwwroot/haina_framework';
/*
* --------------------------------------------------------------------
* DEFAULT CONTROLLER
* --------------------------------------------------------------------
*
* Normally you will set your default controller in the routes.php file.
* You can, however, force a custom routing by hard-coding a
* specific controller class/function here. For most applications, you
* WILL NOT set your routing here, but it's an option for those
* special instances where you might want to override the standard
* routing in a specific front controller that shares a common CI installation.
*
* IMPORTANT: If you set the routing here, NO OTHER controller will be
* callable. In essence, this preference limits your application to ONE
* specific controller. Leave the function name blank if you need
* to call functions dynamically via the URI.
*
* Un-comment the $routing array below to use this feature
*
*/
// The directory name, relative to the "controllers" folder. Leave blank
// if your controller is not in a sub-folder within the "controllers" folder
// $routing['directory'] = '';
// The controller class file name. Example: Mycontroller.php
// $routing['controller'] = '';
// The controller function you wish to be called.
// $routing['function'] = '';
/*
* -------------------------------------------------------------------
* CUSTOM CONFIG VALUES
* -------------------------------------------------------------------
*
* The $assign_to_config array below will be passed dynamically to the
* config class when initialized. This allows you to set custom config
* items or override any default config values found in the config.php file.
* This can be handy as it permits you to share one application between
* multiple front controller files, with each file containing different
* config values.
*
* Un-comment the $assign_to_config array below to use this feature
*
*/
// $assign_to_config['name_of_config_item'] = 'value of config item';
// --------------------------------------------------------------------
// END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
// --------------------------------------------------------------------
/*
* ---------------------------------------------------------------
* Resolve the system path for increased reliability
* ---------------------------------------------------------------
*/
// Set the current directory correctly for CLI requests
if (defined('STDIN'))
{
chdir(dirname(__FILE__));
}
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}
// ensure there's a trailing slash
$system_path = rtrim($system_path, '/').'/';
// Is the system path correct?
if ( ! is_dir($system_path))
{
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}
/*
* -------------------------------------------------------------------
* Now that we know the path, set the main path constants
* -------------------------------------------------------------------
*/
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
// The PHP file extension
define('EXT', '.php');
// Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path));
// Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));
// Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));
// The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_folder.'/');
}
/*
* --------------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
* --------------------------------------------------------------------
*
* And away we go...
*
*/
require_once BASEPATH.'core/CodeIgniter'.EXT;
/* End of file index.php */
/* Location: ./index.php */

@ -0,0 +1 @@
Deny from all

@ -0,0 +1 @@
deny from all

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,116 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| AUTO-LOADER
| -------------------------------------------------------------------
| This file specifies which systems should be loaded by default.
|
| In order to keep the framework as light-weight as possible only the
| absolute minimal resources are loaded by default. For example,
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
| request.
|
| -------------------------------------------------------------------
| Instructions
| -------------------------------------------------------------------
|
| These are the things you can load automatically:
|
| 1. Packages
| 2. Libraries
| 3. Helper files
| 4. Custom config files
| 5. Language files
| 6. Models
|
*/
/*
| -------------------------------------------------------------------
| Auto-load Packges
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
$autoload['packages'] = array(APPPATH.'third_party');
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
$autoload['libraries'] = array('database','form_validation');
/*
| -------------------------------------------------------------------
| Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = array('url','cookie','cht');
/*
| -------------------------------------------------------------------
| Auto-load Config files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['config'] = array('config1', 'config2');
|
| NOTE: This item is intended for use ONLY if you have created custom
| config files. Otherwise, leave it blank.
|
*/
$autoload['config'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Language files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['language'] = array('lang1', 'lang2');
|
| NOTE: Do not include the "_lang" part of your file. For example
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
*/
$autoload['language'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Models
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('model1', 'model2');
|
*/
$autoload['model'] = array();
/* End of file autoload.php */
/* Location: ./application/config/autoload.php */

@ -0,0 +1,375 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| If this is not set then CodeIgniter will guess the protocol, domain and
| path to your installation.
|
*/
$config['base_url'] = '';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'AUTO' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'PATH_INFO';
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '';
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This determines which set of language files should be used. Make sure
| there is an available translation if you intend to use something other
| than english.
|
*/
$config['language'] = 'english';
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
*/
$config['charset'] = 'UTF-8';
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the 'hooks' feature you must enable it by
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;
/*
|--------------------------------------------------------------------------
| Class Extension Prefix
|--------------------------------------------------------------------------
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/core_classes.html
| http://codeigniter.com/user_guide/general/creating_libraries.html
|
*/
$config['subclass_prefix'] = 'MY_';
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify with a regular expression which characters are permitted
| within your URLs. When someone tries to submit a URL with disallowed
| characters they will get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| example.com/who/what/where/
|
| By default CodeIgniter enables access to the $_GET array. If for some
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
| You can optionally enable standard query string based URLs:
| example.com?who=me&what=something&where=here
|
| Options are: TRUE or FALSE (boolean)
|
| The other items let you set the query string 'words' that will
| invoke your controllers and its functions:
| example.com/index.php?c=controller&m=function
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
/*
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| If you have enabled error logging, you can set an error threshold to
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 1;
/*
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/logs/ folder. Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
/*
|--------------------------------------------------------------------------
| Date Format for Logs
|--------------------------------------------------------------------------
|
| Each item that is logged has an associated date. You can use PHP date
| codes to set your own date formatting
|
*/
$config['log_date_format'] = 'Y-m-d H:i:s';
/*
|--------------------------------------------------------------------------
| Cache Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| system/cache/ folder. Use a full server path with trailing slash.
|
*/
$config['cache_path'] = '';
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| If you use the Encryption class or the Session class you
| MUST set an encryption key. See the user guide for info.
|
*/
$config['encryption_key'] = '';
/*
|--------------------------------------------------------------------------
| Session Variables
|--------------------------------------------------------------------------
|
| 'sess_cookie_name' = the name you want for the cookie
| 'sess_expiration' = the number of SECONDS you want the session to last.
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
| 'sess_expire_on_close' = Whether to cause the session to expire automatically
| when the browser window is closed
| 'sess_encrypt_cookie' = Whether to encrypt the cookie
| 'sess_use_database' = Whether to save the session data to a database
| 'sess_table_name' = The name of the session database table
| 'sess_match_ip' = Whether to match the user's IP address when reading the session data
| 'sess_match_useragent' = Whether to match the User Agent when reading the session data
| 'sess_time_to_update' = how many seconds between CI refreshing Session Information
|
*/
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
/*
|--------------------------------------------------------------------------
| Cookie Related Variables
|--------------------------------------------------------------------------
|
| 'cookie_prefix' = Set a prefix if you need to avoid collisions
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
| 'cookie_path' = Typically will be a forward slash
| 'cookie_secure' = Cookies will only be set if a secure HTTPS connection exists.
|
*/
$config['cookie_prefix'] = "AH9527"; //乱写的一个前缀,反正冲突
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;
/*
|--------------------------------------------------------------------------
| Global XSS Filtering
|--------------------------------------------------------------------------
|
| Determines whether the XSS filter is always active when GET, POST or
| COOKIE data is encountered
|
*/
$config['global_xss_filtering'] = FALSE;
/*
|--------------------------------------------------------------------------
| Cross Site Request Forgery
|--------------------------------------------------------------------------
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
| checked on a submitted form. If you are accepting user data, it is strongly
| recommended CSRF protection be enabled.
|
| 'csrf_token_name' = The token name
| 'csrf_cookie_name' = The cookie name
| 'csrf_expire' = The number in seconds the token should expire.
*/
$config['csrf_protection'] = FALSE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
/*
|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|
| Enables Gzip output compression for faster page loads. When enabled,
| the output class will test whether your server supports Gzip.
| Even if it does, however, not all browsers support compression
| so enable only if you are reasonably sure your visitors can handle it.
|
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
| means you are prematurely outputting something to your browser. It could
| even be a line of whitespace at the end of one of your scripts. For
| compression to work, nothing can be sent before the output buffer is called
| by the output class. Do not 'echo' any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;
/*
|--------------------------------------------------------------------------
| Master Time Reference
|--------------------------------------------------------------------------
|
| Options are 'local' or 'gmt'. This pref tells the system whether to use
| your server's local time as the master 'now' reference, or convert it to
| GMT. See the 'date helper' page of the user guide for information
| regarding date handling.
|
*/
$config['time_reference'] = 'local';
/*
|--------------------------------------------------------------------------
| Rewrite PHP Short Tags
|--------------------------------------------------------------------------
|
| If your PHP installation does not have short tag support enabled CI
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
| in your view files. Options are TRUE or FALSE (boolean)
|
*/
$config['rewrite_short_tags'] = FALSE;
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '75.126.42.90,106.186.113.181,82.194.72.163,78.47.247.200,144.76.95.112,78.47.16.163,188.120.225.171,92.243.4.190,199.195.192.27,176.67.169.200,46.166.147.149,46.166.155.152,106.187.95.194,88.198.111.123';
//设置站点信息
$config['Site_Domain'] = 'www.asiahighlights.com';
$config['Site_Code'] = "ah";
$config['Site_ID'] = 141;
$config['Site_LGC'] = 1;
$config['Site_ServiceName'] = 'lissy';
$config['Site_Department'] = 28;
$config['Site_ServiceEmail'] = 'contact@asiahighlights.com';
define('Site_Currency', 'RMB'); //AH网站数据库中就是美金报价所以前台不需要转换价格这里设置为人民币即可
define('Site_Code', 'ah'); //AH网站数据库中就是美金报价所以前台不需要转换价格这里设置为人民币即可
/* End of file config.php */
/* Location: ./application/config/config.php */

@ -0,0 +1,41 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
define('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
define('FOPEN_READ', 'rb');
define('FOPEN_READ_WRITE', 'r+b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
define('FOPEN_WRITE_CREATE', 'ab');
define('FOPEN_READ_WRITE_CREATE', 'a+b');
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/* End of file constants.php */
/* Location: ./application/config/constants.php */

@ -0,0 +1,48 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database type. ie: mysql. Currently supported:
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Active Record class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['autoinit'] Whether or not to automatically initialize the database.
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $active_record variables lets you determine whether or not to load
| the active record class
*/
$active_group = 'HT';
$active_record = false;
require 'C:/database_conn.php';
/* End of file database.php */
/* Location: ./application/config/database.php */

@ -0,0 +1,15 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$_doctypes = array(
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'html5' => '<!DOCTYPE html>',
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'
);
/* End of file doctypes.php */
/* Location: ./application/config/doctypes.php */

@ -0,0 +1,64 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| Foreign Characters
| -------------------------------------------------------------------
| This file contains an array of foreign characters for transliteration
| conversion used by the Text helper
|
*/
$foreign_characters = array(
'/ä|æ|ǽ/' => 'ae',
'/ö|œ/' => 'oe',
'/ü/' => 'ue',
'/Ä/' => 'Ae',
'/Ü/' => 'Ue',
'/Ö/' => 'Oe',
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A',
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a',
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
'/ç|ć|ĉ|ċ|č/' => 'c',
'/Ð|Ď|Đ/' => 'D',
'/ð|ď|đ/' => 'd',
'/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E',
'/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e',
'/Ĝ|Ğ|Ġ|Ģ/' => 'G',
'/ĝ|ğ|ġ|ģ/' => 'g',
'/Ĥ|Ħ/' => 'H',
'/ĥ|ħ/' => 'h',
'/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I',
'/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i',
'/Ĵ/' => 'J',
'/ĵ/' => 'j',
'/Ķ/' => 'K',
'/ķ/' => 'k',
'/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L',
'/ĺ|ļ|ľ|ŀ|ł/' => 'l',
'/Ñ|Ń|Ņ|Ň/' => 'N',
'/ñ|ń|ņ|ň|ʼn/' => 'n',
'/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O',
'/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o',
'/Ŕ|Ŗ|Ř/' => 'R',
'/ŕ|ŗ|ř/' => 'r',
'/Ś|Ŝ|Ş|Š/' => 'S',
'/ś|ŝ|ş|š|ſ/' => 's',
'/Ţ|Ť|Ŧ/' => 'T',
'/ţ|ť|ŧ/' => 't',
'/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U',
'/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u',
'/Ý|Ÿ|Ŷ/' => 'Y',
'/ý|ÿ|ŷ/' => 'y',
'/Ŵ/' => 'W',
'/ŵ/' => 'w',
'/Ź|Ż|Ž/' => 'Z',
'/ź|ż|ž/' => 'z',
'/Æ|Ǽ/' => 'AE',
'/ß/'=> 'ss',
'/IJ/' => 'IJ',
'/ij/' => 'ij',
'/Œ/' => 'OE',
'/ƒ/' => 'f'
);
/* End of file foreign_chars.php */
/* Location: ./application/config/foreign_chars.php */

@ -0,0 +1,16 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/hooks.html
|
*/
/* End of file hooks.php */
/* Location: ./application/config/hooks.php */

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,106 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| MIME TYPES
| -------------------------------------------------------------------
| This file contains an array of mime types. It is used by the
| Upload class to help identify allowed file types.
|
*/
$mimes = array( 'hqx' => 'application/mac-binhex40',
'cpt' => 'application/mac-compactpro',
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'),
'bin' => 'application/macbinary',
'dms' => 'application/octet-stream',
'lha' => 'application/octet-stream',
'lzh' => 'application/octet-stream',
'exe' => array('application/octet-stream', 'application/x-msdownload'),
'class' => 'application/octet-stream',
'psd' => 'application/x-photoshop',
'so' => 'application/octet-stream',
'sea' => 'application/octet-stream',
'dll' => 'application/octet-stream',
'oda' => 'application/oda',
'pdf' => array('application/pdf', 'application/x-download'),
'ai' => 'application/postscript',
'eps' => 'application/postscript',
'ps' => 'application/postscript',
'smi' => 'application/smil',
'smil' => 'application/smil',
'mif' => 'application/vnd.mif',
'xls' => array('application/excel', 'application/vnd.ms-excel', 'application/msexcel'),
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint'),
'wbxml' => 'application/wbxml',
'wmlc' => 'application/wmlc',
'dcr' => 'application/x-director',
'dir' => 'application/x-director',
'dxr' => 'application/x-director',
'dvi' => 'application/x-dvi',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'php' => 'application/x-httpd-php',
'php4' => 'application/x-httpd-php',
'php3' => 'application/x-httpd-php',
'phtml' => 'application/x-httpd-php',
'phps' => 'application/x-httpd-php-source',
'js' => 'application/x-javascript',
'swf' => 'application/x-shockwave-flash',
'sit' => 'application/x-stuffit',
'tar' => 'application/x-tar',
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
'xhtml' => 'application/xhtml+xml',
'xht' => 'application/xhtml+xml',
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed'),
'mid' => 'audio/midi',
'midi' => 'audio/midi',
'mpga' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
'aif' => 'audio/x-aiff',
'aiff' => 'audio/x-aiff',
'aifc' => 'audio/x-aiff',
'ram' => 'audio/x-pn-realaudio',
'rm' => 'audio/x-pn-realaudio',
'rpm' => 'audio/x-pn-realaudio-plugin',
'ra' => 'audio/x-realaudio',
'rv' => 'video/vnd.rn-realvideo',
'wav' => 'audio/x-wav',
'bmp' => 'image/bmp',
'gif' => 'image/gif',
'jpeg' => array('image/jpeg', 'image/pjpeg'),
'jpg' => array('image/jpeg', 'image/pjpeg'),
'jpe' => array('image/jpeg', 'image/pjpeg'),
'png' => array('image/png', 'image/x-png'),
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'css' => 'text/css',
'html' => 'text/html',
'htm' => 'text/html',
'shtml' => 'text/html',
'txt' => 'text/plain',
'text' => 'text/plain',
'log' => array('text/plain', 'text/x-log'),
'rtx' => 'text/richtext',
'rtf' => 'text/rtf',
'xml' => 'text/xml',
'xsl' => 'text/xml',
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'mpe' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'avi' => 'video/x-msvideo',
'movie' => 'video/x-sgi-movie',
'doc' => 'application/msword',
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'word' => array('application/msword', 'application/octet-stream'),
'xl' => 'application/excel',
'eml' => 'message/rfc822',
'json' => array('application/json', 'text/json')
);
/* End of file mimes.php */
/* Location: ./application/config/mimes.php */

@ -0,0 +1,17 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Profiler Sections
| -------------------------------------------------------------------------
| This file lets you determine whether or not various sections of Profiler
| data are displayed when the Profiler is enabled.
| Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/profiling.html
|
*/
/* End of file profiler.php */
/* Location: ./application/config/profiler.php */

@ -0,0 +1,46 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| http://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There area two reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router what URI segments to use if those provided
| in the URL cannot be matched to a valid route.
|
*/
$route['default_controller'] = "welcome";
$route['404_override'] = 'error/page_not_found';
/* End of file routes.php */
/* Location: ./application/config/routes.php */

@ -0,0 +1,66 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMILEYS
| -------------------------------------------------------------------
| This file contains an array of smileys for use with the emoticon helper.
| Individual images can be used to replace multiple simileys. For example:
| :-) and :) use the same image replacement.
|
| Please see user guide for more info:
| http://codeigniter.com/user_guide/helpers/smiley_helper.html
|
*/
$smileys = array(
// smiley image name width height alt
':-)' => array('grin.gif', '19', '19', 'grin'),
':lol:' => array('lol.gif', '19', '19', 'LOL'),
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
':)' => array('smile.gif', '19', '19', 'smile'),
';-)' => array('wink.gif', '19', '19', 'wink'),
';)' => array('wink.gif', '19', '19', 'wink'),
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
':-S' => array('confused.gif', '19', '19', 'confused'),
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
':long:' => array('longface.gif', '19', '19', 'long face'),
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
':down:' => array('downer.gif', '19', '19', 'downer'),
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
':sick:' => array('sick.gif', '19', '19', 'sick'),
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
'>:(' => array('mad.gif', '19', '19', 'mad'),
':mad:' => array('mad.gif', '19', '19', 'mad'),
'>:-(' => array('angry.gif', '19', '19', 'angry'),
':angry:' => array('angry.gif', '19', '19', 'angry'),
':zip:' => array('zip.gif', '19', '19', 'zipper'),
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
':snake:' => array('snake.gif', '19', '19', 'snake'),
':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
);
/* End of file smileys.php */
/* Location: ./application/config/smileys.php */

@ -0,0 +1,178 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| USER AGENT TYPES
| -------------------------------------------------------------------
| This file contains four arrays of user agent data. It is used by the
| User Agent Class to help identify browser, platform, robot, and
| mobile device data. The array keys are used to identify the device
| and the array values are used to set the actual name of the item.
|
*/
$platforms = array (
'windows nt 6.0' => 'Windows Longhorn',
'windows nt 5.2' => 'Windows 2003',
'windows nt 5.0' => 'Windows 2000',
'windows nt 5.1' => 'Windows XP',
'windows nt 4.0' => 'Windows NT 4.0',
'winnt4.0' => 'Windows NT 4.0',
'winnt 4.0' => 'Windows NT',
'winnt' => 'Windows NT',
'windows 98' => 'Windows 98',
'win98' => 'Windows 98',
'windows 95' => 'Windows 95',
'win95' => 'Windows 95',
'windows' => 'Unknown Windows OS',
'os x' => 'Mac OS X',
'ppc mac' => 'Power PC Mac',
'freebsd' => 'FreeBSD',
'ppc' => 'Macintosh',
'linux' => 'Linux',
'debian' => 'Debian',
'sunos' => 'Sun Solaris',
'beos' => 'BeOS',
'apachebench' => 'ApacheBench',
'aix' => 'AIX',
'irix' => 'Irix',
'osf' => 'DEC OSF',
'hp-ux' => 'HP-UX',
'netbsd' => 'NetBSD',
'bsdi' => 'BSDi',
'openbsd' => 'OpenBSD',
'gnu' => 'GNU/Linux',
'unix' => 'Unknown Unix OS'
);
// The order of this array should NOT be changed. Many browsers return
// multiple browser types so we want to identify the sub-type first.
$browsers = array(
'Flock' => 'Flock',
'Chrome' => 'Chrome',
'Opera' => 'Opera',
'MSIE' => 'Internet Explorer',
'Internet Explorer' => 'Internet Explorer',
'Shiira' => 'Shiira',
'Firefox' => 'Firefox',
'Chimera' => 'Chimera',
'Phoenix' => 'Phoenix',
'Firebird' => 'Firebird',
'Camino' => 'Camino',
'Netscape' => 'Netscape',
'OmniWeb' => 'OmniWeb',
'Safari' => 'Safari',
'Mozilla' => 'Mozilla',
'Konqueror' => 'Konqueror',
'icab' => 'iCab',
'Lynx' => 'Lynx',
'Links' => 'Links',
'hotjava' => 'HotJava',
'amaya' => 'Amaya',
'IBrowse' => 'IBrowse'
);
$mobiles = array(
// legacy array, old values commented out
'mobileexplorer' => 'Mobile Explorer',
// 'openwave' => 'Open Wave',
// 'opera mini' => 'Opera Mini',
// 'operamini' => 'Opera Mini',
// 'elaine' => 'Palm',
'palmsource' => 'Palm',
// 'digital paths' => 'Palm',
// 'avantgo' => 'Avantgo',
// 'xiino' => 'Xiino',
'palmscape' => 'Palmscape',
// 'nokia' => 'Nokia',
// 'ericsson' => 'Ericsson',
// 'blackberry' => 'BlackBerry',
// 'motorola' => 'Motorola'
// Phones and Manufacturers
'motorola' => "Motorola",
'nokia' => "Nokia",
'palm' => "Palm",
'iphone' => "Apple iPhone",
'ipad' => "iPad",
'ipod' => "Apple iPod Touch",
'sony' => "Sony Ericsson",
'ericsson' => "Sony Ericsson",
'blackberry' => "BlackBerry",
'cocoon' => "O2 Cocoon",
'blazer' => "Treo",
'lg' => "LG",
'amoi' => "Amoi",
'xda' => "XDA",
'mda' => "MDA",
'vario' => "Vario",
'htc' => "HTC",
'samsung' => "Samsung",
'sharp' => "Sharp",
'sie-' => "Siemens",
'alcatel' => "Alcatel",
'benq' => "BenQ",
'ipaq' => "HP iPaq",
'mot-' => "Motorola",
'playstation portable' => "PlayStation Portable",
'hiptop' => "Danger Hiptop",
'nec-' => "NEC",
'panasonic' => "Panasonic",
'philips' => "Philips",
'sagem' => "Sagem",
'sanyo' => "Sanyo",
'spv' => "SPV",
'zte' => "ZTE",
'sendo' => "Sendo",
// Operating Systems
'symbian' => "Symbian",
'SymbianOS' => "SymbianOS",
'elaine' => "Palm",
'palm' => "Palm",
'series60' => "Symbian S60",
'windows ce' => "Windows CE",
// Browsers
'obigo' => "Obigo",
'netfront' => "Netfront Browser",
'openwave' => "Openwave Browser",
'mobilexplorer' => "Mobile Explorer",
'operamini' => "Opera Mini",
'opera mini' => "Opera Mini",
// Other
'digital paths' => "Digital Paths",
'avantgo' => "AvantGo",
'xiino' => "Xiino",
'novarra' => "Novarra Transcoder",
'vodafone' => "Vodafone",
'docomo' => "NTT DoCoMo",
'o2' => "O2",
// Fallback
'mobile' => "Generic Mobile",
'wireless' => "Generic Mobile",
'j2me' => "Generic Mobile",
'midp' => "Generic Mobile",
'cldc' => "Generic Mobile",
'up.link' => "Generic Mobile",
'up.browser' => "Generic Mobile",
'smartphone' => "Generic Mobile",
'cellphone' => "Generic Mobile"
);
// There are hundreds of bots but these are the most common.
$robots = array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'askjeeves' => 'AskJeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos'
);
/* End of file user_agents.php */
/* Location: ./application/config/user_agents.php */

@ -0,0 +1,57 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/**
*
* 模块机制类
*
*/
class Apps extends CI_Controller
{
//重映射方法,系统函数
public function _remap($app,$param)
{
//第三方应用存放目录
$third_party = 'third_party';
//请求的应用、制器、方法
$app_name = strtolower($app)!='index'?$app:'partners';
$controller_name = isset($param[0])?strtolower($param[0]):'index';
$action_name = isset($param[1])?strtolower($param[1]):'index';
//加载应用包
$app_path=APPPATH.$third_party."/".$app_name."/"; //存放模块的目录
$view_cascade=TRUE; //允许加载模块内、外的视图
$this->load->add_package_path($app_path,$view_cascade);
//加载控制器
if ( ! file_exists($app_path.'controllers/'.$controller_name.'.php')) {
echo 'Controller file is not exists!';
return false;
}
require_once($app_path.'controllers/'.$controller_name.'.php');
$controller_name = ucfirst($controller_name);
//实例化控制器并调用请求的方法
if (class_exists($controller_name,false))
{
$controllerHandler = new $controller_name();
if(method_exists($controllerHandler,$action_name)) {
call_user_func_array(array($controllerHandler, $action_name), array_slice($param, 2));
}else{
echo 'Method is not exists!';
}
}
else
{
echo 'Controller is not exists!';
}
//停止加载应用包
$this->load->remove_package_path($app_path);
}
}

@ -0,0 +1,26 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Error extends CI_Controller {
public function index() {
echo 'index';
}
public function page_not_found() {
$this->output->set_status_header(404);
$data = array();
$data['seo_title'] = 'What Are You Looking for at Asia Highlights Travel';
$data['seo_keywords'] = '';
$data['seo_description'] = '';
$this->load->view('header', $data);
$this->load->view('error/404');
$this->load->view('footer');
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,67 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Information extends CI_Controller {
public function __construct() {
parent::__construct();
//$this->output->enable_profiler(TRUE);
$this->load->model('Information_model');
$this->load->model('InfoMetas_model');
$this->load->library('Tags_analysis');
}
public function index() {
echo 'Information Index';
}
//优先使用传入的URL用于主动生成静态页面去映射(优先使用POST参数)
public function detail($url = '') {
$data = array();
if (empty($url)) {
$url = $this->input->get_post('static_html_url');
}
if (empty($url) || $url == 'index.php') {
$url = get_origin_url();
if (preg_match('/\?.*/', $url) == 1) {
$url = preg_replace('/\?.*/', '', $url);
php_301($url);
return;
}
}
//大小写转向只要url有大写字母的全部转到小写字母的url上
if ($url != mb_strtolower($url)) {
php_301(mb_strtolower($url));
return;
}
$data['detail'] = $this->Information_model->get_detail($url);
if ($data['detail'] === false) {
// send_404($this);todo写一个友好的404页面
redirect('/error/page_not_found');
return false;
}
$data['detail']->ic_content = $this->tags_analysis->analysis($data['detail']);
$data['seo_title'] = $data['detail']->ic_seo_title;
$data['seo_keywords'] = $data['detail']->ic_seo_keywords;
$data['seo_description'] = $data['detail']->ic_seo_description;
$data['seo_url'] = $data['detail']->ic_url;
$data['meta_addon_css'] = $this->InfoMetas_model->get($data['detail']->ic_id, 'meta_addon_css');
$data['meta_addon_js'] = $this->InfoMetas_model->get($data['detail']->ic_id, 'meta_addon_js');
$this->load->view('header', $data);
$this->load->view('information_' . $data['detail']->ic_template);
$this->load->view('footer');
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

@ -0,0 +1,785 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Orders extends CI_Controller {
public $site_code;
public $third_part;
function __construct() {
parent::__construct();
$this->load->model('Orders_model');
//第三合作网站配置
$this->third_part = array(
'EXPCH' => array(
'url' => 'www.experienciaenchina.com',
'email' => 'experienciaenchina@gmail.com'
),
'MESENLLA' => array(
'url' => 'mesenlla.es',
'email' => 'lmrcits@163.com'
),
'wayaway' => array(
'url' => 'www.way-away.es',
'email' => 'lmrcits@163.com'
),
'traba' => array(
'url' => 'trabajoenchina.org',
'email' => 'lmrcits@163.com'
),
'guias' => array(
'url' => 'http://guias-viajar.com/china/',
'email' => 'lmrcits@163.com'
),
'sapor' => array(
'url' => 'http://www.saporedicina.com/es/viajar-en-tren-por-china/',
'email' => 'lmrcits@163.com'
),
'saporit' => array(
'url' => 'http://www.saporedicina.com/',
'email' => 'lmrcits@163.com'
),
'ctooles' => array(
'url' => 'http://www.chinese-tools.com/',
'email' => 'lmrcits@163.com'
),
'ctoolfr' => array(
'url' => 'http://www.chinese-tools.com/',
'email' => 'lmrcits@163.com'
)
);
$this->site_code = strtolower($this->config->item('Site_Code'));
}
public function index() {
redirect();
}
public function question_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('aquestion', 'lang:aquestion', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
bind_ip($this->input->ip_address());
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32002';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
$this->Orders_model->COLI_GroupType = '19006';
$this->Orders_model->COLI_OrderType = '19006';
$this->Orders_model->MEI_MailList = $this->input->post('email');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->COLI_ProductSN = '';
bind_email($this->Orders_model->MEI_MailList);
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Question Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Question Orders', $this->load->view('orders/email_template', '', true));
//是否AJAX提交
$no_ajax = $this->input->post('no_ajax');
if (empty($no_ajax)) {
$data[] = array('name' => 'ok', 'value' => site_url('orders/question-thankyou/'));
echo json_encode($data);
} else {
$file_alias = $this->input->post('file_alias');
redirect(site_url('orders/question-thankyou/' . $file_alias));
}
}
}
public function question_thankyou() {
$data = array();
$this->html_do->head($data, 'r');
$data['PPCCode'] = $this->lang->line('PPC_question');
$this->load->view('orders/r_thankyou/' . $this->site_code, $data);
}
/**
*
* 联系我们
* @author lmr
*
*/
public function contactus() {
//初始化html结构
$data = array();
$this->html_do->head($data, 'r');
$this->load->view('orders/contact_us/' . $this->site_code, $data);
$this->html_do->foot($data, 'r');
$this->output->cache(10086);
}
/**
*
* 联系我们订单入库
* @author lmr
*
*/
public function contactus_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('comments', 'lang:comments', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32007';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
//垃圾订单过滤('http://外站.com'
$comments = $this->input->post('comments');
$ms = array();
if (preg_match('/http:\/\/(.+).(com|net)/', $comments, $ms)) {
if (stripos($ms[0], $this->config->item('Site_ContactName')) === false) {
echo('--error 112--');
return;
}
}
$this->Orders_model->COLI_GroupType = '19006';
$this->Orders_model->COLI_OrderType = '19006';
$this->Orders_model->MEI_MailList = $this->input->post('email');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->COLI_ProductSN = '';
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Contactus Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Contactus Orders', $this->load->view('orders/email_template', '', true));
//begin 发送邮件给客人
/*
$this->load->helper('file');
$fileString = read_file('./CodeFrame_Templet/forms/customer-email-review2.asp');
$fileString = str_replace('<#realname#>', $this->input->post('realname'), $fileString);
if ($fileString) {
$mailTitle = $this->language_tags->Set("t-reserve-citytour-save-subject", "You have successfully sent your enquiry", array());
$mailBody = $fileString;
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->
config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), $mailTitle, $mailBody);
}
*/
//end
//是否AJAX提交
$no_ajax = $this->input->post('no_ajax');
if (empty($no_ajax)) {
$data[] = array('name' => 'go', 'value' => site_url('orders/contactus_thankyou/'));
echo json_encode($data);
} else {
$file_alias = $this->input->post('file_alias');
redirect(site_url('orders/contactus-thankyou/' . $file_alias));
}
}
}
public function contactus_thankyou() {
$data = array();
$data['PPCCode'] = $this->lang->line('PPC_contact_us');
$this->load->view('header', $data);
$this->load->view('orders/thank_you', $data);
$this->load->view('footer');
}
/**
* 联系我们订单入库
* @author lmr
*/
public function callus_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('comments', 'lang:comments', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
bind_ip($this->input->ip_address());
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32004';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
$this->Orders_model->COLI_GroupType = '19006';
$this->Orders_model->COLI_OrderType = '19006';
$this->Orders_model->MEI_MailList = $this->input->post('email');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->COLI_ProductSN = '';
bind_email($this->Orders_model->MEI_MailList);
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Contactus Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Contactus Orders', $this->load->view('orders/email_template', '', true));
$data[] = array('name' => 'ok', 'value' => site_url('orders/callus-thankyou/'));
echo json_encode($data);
}
}
public function callus_thankyou() {
$data = array();
$data['PPCCode'] = $this->lang->line('PPC_callus');
$this->load->view('header', $data);
$this->load->view('orders/thank_you', $data);
$this->load->view('footer');
}
public function tailormade($third_part_code = '') {
$data = array();
$data['anum'] = $this->input->post('anum', true);
$data['bnum'] = $this->input->post('bnum', true);
$data['cnum'] = $this->input->post('cnum', true);
$data['aq'] = $this->input->post('aq', true);
$data['date'] = $this->input->post('date', true);
$data['email'] = $this->input->post('email', true);
$data['realname'] = $this->input->post('realname', true);
$data['third_part_code'] = $third_part_code;
$data['seo_title'] = "Tailor-made Southeast Asia and China Tour from the Experts | Asia Highlights Since 1959";
// $data['seo_keywords'] = $data['detail']->ic_seo_keywords;
// $data['seo_description'] = $data['detail']->ic_seo_description;
$this->load->view('header', $data);
$this->load->view('orders/tailor_make');
$this->load->view('footer');
}
public function tailormade_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('nationality', 'lang:nationality', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('additionalrequirements', 'lang:additionalrequirements', 'required');
$this->form_validation->set_rules('hotel', 'lang:hotel', 'required');
$this->form_validation->set_rules('cli_tourdays', 'lang:cli_tourdays', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
if ($this->input->post('no_ajax')) {
$vali_string = '';
foreach ($data as $v) {
$vali_string .= $v['name'] . ' => ' . $v['value'] . ' ';
}
echo('<script>alert("' . $vali_string . '");history.back();</script>');
} else {
echo json_encode($data);
}
} else {
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32003';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
$this->Orders_model->COLI_GroupType = '19006';
$this->Orders_model->COLI_OrderType = '19006';
if (is_numeric($this->input->post('adultsNumber'))) {
$this->Orders_model->COLI_PersonNum = $this->input->post('adultsNumber');
}
if (is_numeric($this->input->post('ChildrenNumber'))) {
$this->Orders_model->COLI_ChildNum = $this->input->post('ChildrenNumber');
}
if (is_numeric($this->input->post('BabiesNumber'))) {
$this->Orders_model->COLI_BabyNum = $this->input->post('BabiesNumber');
}
$this->Orders_model->MEI_MailList = $this->input->post('email');
$this->Orders_model->MEI_Mail = $this->input->post('email2');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->Orders_model->MEI_Nationality = $this->Orders_model->GetNationalityID($this->
input->post('nationality'));
$this->COLI_ProductSN = '';
if ($this->input->post('Date_Start')) {
$this->Orders_model->COLI_OrderStartDate = $this->input->post('Date_Start');
}
$this->Orders_model->MEI_Gender = $this->input->post('gender');
$this->Orders_model->MEI_Phone = $this->input->post('PhoneNo');
//是否来至第三方合作网站
$third_webcode = $this->input->post('third_webcode');
if (empty($third_webcode)) {
$third_webcode = $this->input->cookie('third_code');
$this->input->set_cookie('third_code', '', '');
$this->input->set_cookie('third%5Fcode', '', '');
}
if (!empty($third_webcode)) {
$this->Orders_model->COLI_WebCode = $third_webcode;
}
//指定操作人
if ($this->input->post('COLI_OPI_SN')) {
$this->Orders_model->COLI_OPI_SN = $this->input->post('COLI_OPI_SN');
}
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Tailor Made Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人 (20160504tailor_make)
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Tailor Made Orders', $this->load->view('orders/email_template', '', true));
//是否AJAX提交
$no_ajax = $this->input->post('no_ajax');
if (empty($no_ajax)) {
$data[] = array('name' => 'go', 'value' => site_url('orders/tailormade_thankyou'));
echo json_encode($data);
} else {
$file_alias = $this->input->post('file_alias');
redirect(site_url('orders/tailormade-thankyou/' . $file_alias));
}
}
}
public function tailormade_thankyou() {
$data = array();
$data['PPCCode'] = $this->lang->line('PPC_tailormade');
$this->load->view('header', $data);
$this->load->view('orders/thank_you', $data);
$this->load->view('footer');
}
public function single_city_tour() {
$data = array();
$this->html_do->head($data, 'r');
$this->form_validation->set_rules('cli_no', 'lang:cli_no', 'required');
$data['post_price'] = $this->input->post('cli_price');
if ($this->form_validation->run() == false) {
redirect();
} else {
$this->Tours_model->TopNum = 1;
$this->Tours_model->CLI_NO = $this->input->post('cli_no');
$tourInfo = $this->Tours_model->GetInfo();
if ($tourInfo) {
$data['country'] = $this->Site_model->GetCountry();
$tourInfo->CLI_Price = $this->Tours_model->GetTourPrice($tourInfo->CLI_NO, $this->
input->post('adultenum'), $this->input->post('cli_grade'), $this->input->post('season'), $this->input->post('starting_date'));
$data['postURL'] = site_url('orders/single-city-tour-save/');
$data['tourInfo'] = $tourInfo;
$data['Header'] = $this->load->view('header', array('Navigation' => $this->
Site_model->GetNavigation('single-city-tour')), true);
$this->load->view('orders/tour_simple/' . $this->site_code, $data);
} else {
redirect();
}
}
}
public function single_city_tour_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('nationality', 'lang:nationality', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('starting_date', 'lang:starting_date', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32001';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
$this->Orders_model->COLI_GroupType = '19004';
$this->Orders_model->COLI_OrderType = '19004';
$this->Orders_model->COLI_Name = $this->input->post('cli_no') . ' ' . $this->
input->post('cli_tourtitle');
$this->Orders_model->COLI_PersonNum = $this->input->post('adultenum');
$this->Orders_model->COLI_ChildNum = $this->input->post('childnum');
$this->Orders_model->COLI_BabyNum = $this->input->post('babynum');
$this->Orders_model->COLI_OrderStartDate = $this->input->post('starting_date');
$this->Orders_model->COLI_Days = $this->input->post('cli_tourdays');
$this->Orders_model->MEI_MailList = $this->input->post('email');
$this->Orders_model->MEI_Mail = $this->input->post('email2');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->Orders_model->MEI_Nationality = $this->Orders_model->GetNationalityID($this->
input->post('nationality'));
$this->Orders_model->MEI_Gender = $this->input->post('gender');
$this->Orders_model->MEI_Phone = $this->input->post('phoneno');
if (empty($this->Orders_model->MEI_Phone) || !isset($this->Orders_model->
MEI_Phone)) {
$this->Orders_model->MEI_Phone = @$this->input->post('PhoneNo');
}
$this->Orders_model->COLI_ProductSN = $this->input->post('cli_sn');
//是否来至第三方合作网站
$third_webcode = $this->input->post('third_webcode');
if (empty($third_webcode)) {
$third_webcode = $this->input->cookie('third_code');
$this->input->set_cookie('third_code', '', '');
$this->input->set_cookie('third%5Fcode', '', '');
}
if (!empty($third_webcode)) {
$this->Orders_model->COLI_WebCode = $third_webcode;
}
bind_email($this->Orders_model->MEI_MailList);
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Single City Tour Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Single City Tour Orders', $this->load->view('orders/email_template', '', true));
//是否AJAX提交
$no_ajax = $this->input->post('no_ajax');
if (empty($no_ajax)) {
$data[] = array('name' => 'ok', 'value' => site_url('orders/single-city-tour-thankyou/'));
echo json_encode($data);
} else {
$file_alias = $this->input->post('file_alias');
redirect(site_url('orders/single-city-tour-thankyou/' . $file_alias));
}
}
}
public function single_city_tour_thankyou() {
$data = array();
$this->html_do->head($data, 'r');
$data['PPCCode'] = $this->lang->line('PPC_single_city_tour');
$this->load->view('orders/r_thankyou/' . $this->site_code, $data);
}
public function asia_tour() {
$data = array();
$this->form_validation->set_rules('cli_no', 'lang:cli_no', 'required');
if ($this->form_validation->run() == false) {
redirect();
}
$data['post_cli_no'] = $this->input->post('cli_no');
$data['post_cli_sn'] = $this->input->post('cli_sn');
$data['post_days'] = $this->input->post('cli_days');
$data['post_destinations'] = $this->input->post('destinations');
$data['adultsNumber'] = $this->input->post('adultsNumber');
$data['ChildrenNumber'] = $this->input->post('ChildrenNumber');
$data['BabiesNumber'] = $this->input->post('BabiesNumber');
$data['post_Starting_Date'] = $this->input->post('Starting_Date');
$this->load->view('header', $data);
$this->load->view('orders/inquiry_form');
$this->load->view('footer');
}
public function asia_tour_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('nationality', 'lang:nationality', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
$this->form_validation->set_rules('additionalrequirements', 'lang:additionalrequirements', 'required');
$this->form_validation->set_rules('hotel', 'lang:hotel', 'required');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32001';
//HT订单跟踪代码
$COOKIE_inquireTrackFrom = get_cookie('inquireTrackFrom');
if (!empty($COOKIE_inquireTrackFrom) && is_numeric($COOKIE_inquireTrackFrom)) {
$this->Orders_model->COLI_sourcetype = (int) $COOKIE_inquireTrackFrom;
delete_cookie('inquireTrackFrom');
}
//Trace GOOGLE
$COOKIE_inquireTrackGoogle = get_cookie('inquireTrackGoogle');
if (!empty($COOKIE_inquireTrackGoogle)) {
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $COOKIE_inquireTrackGoogle;
delete_cookie('inquireTrackGoogle');
}
$this->Orders_model->COLI_GroupType = '19001';
$this->Orders_model->COLI_OrderType = '19001';
$this->Orders_model->COLI_Name = $this->input->post('cli_no') . ' ' . $this->
input->post('cli_tourtitle');
$this->Orders_model->COLI_PersonNum = $this->input->post('adultsNumber');
$this->Orders_model->COLI_ChildNum = $this->input->post('ChildrenNumber');
$this->Orders_model->COLI_BabyNum = $this->input->post('BabiesNumber');
$this->Orders_model->COLI_OrderStartDate = $this->input->post('starting_date');
$this->Orders_model->COLI_Days = $this->input->post('cli_tourdays');
$this->Orders_model->MEI_MailList = $this->input->post('email');
$this->Orders_model->MEI_Mail = $this->input->post('email2');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->Orders_model->MEI_Nationality = $this->Orders_model->GetNationalityID($this->
input->post('nationality'));
$this->Orders_model->MEI_Gender = $this->input->post('gender');
if (empty($this->Orders_model->MEI_Phone) || !isset($this->Orders_model->
MEI_Phone)) {
$this->Orders_model->MEI_Phone = @$this->input->post('PhoneNo');
}
$this->Orders_model->COLI_ProductSN = $this->input->post('cli_sn');
//是否来至第三方合作网站
$third_webcode = $this->input->post('third_webcode');
if (empty($third_webcode)) {
$third_webcode = $this->input->cookie('third_code');
$this->input->set_cookie('third_code', '', '');
$this->input->set_cookie('third%5Fcode', '', '');
}
if (!empty($third_webcode)) {
$this->Orders_model->COLI_WebCode = $third_webcode;
}
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Tour Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人(20160504inquiry_form)
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Tour Orders', $this->load->view('orders/email_template', '', true));
$data[] = array('name' => 'go', 'value' => site_url('orders/asia_tour_thankyou'));
echo json_encode($data);
}
}
public function asia_tour_thankyou() {
$data = array();
$data['PPCCode'] = $this->lang->line('PPC_china_tour');
$this->load->view('header', $data);
$this->load->view('orders/thank_you', $data);
$this->load->view('footer');
}
public function group_tour() {
$this->form_validation->set_rules('cli_no', 'lang:cli_no', 'required');
$data['post_price'] = $this->input->post('cli_price');
if ($this->form_validation->run() == false) {
redirect();
} else {
$data['country'] = $this->Site_model->GetCountry();
$this->Tours_model->TopNum = 1;
$this->Tours_model->CLI_NO = $this->input->post('cli_no');
$tourInfo = $this->Tours_model->GetInfo();
if ($tourInfo) {
$tourInfo->CLI_Price = $this->Tours_model->GetGroupTourPrice($tourInfo->CLI_NO, $this->input->post('starting_date'));
$data['postURL'] = site_url('orders/group-tour-save/');
$data['tourInfo'] = $tourInfo;
$data['Header'] = $this->load->view('header', array('Navigation' => $this->
Site_model->GetNavigation('tour')), true);
$this->load->view('orders/tour', $data);
$this->load->view('footer');
} else {
redirect();
}
}
}
public function group_tour_save() {
$this->form_validation->set_rules('realname', 'lang:realname', 'required');
$this->form_validation->set_rules('nationality', 'lang:nationality', 'required');
$this->form_validation->set_rules('email', 'lang:email', 'required|valid_email');
if ($this->form_validation->run() == false) {
$data = array();
foreach ($this->form_validation->_error_array as $key => $value) {
$data[] = array('name' => $key, 'value' => $value);
}
echo json_encode($data);
} else {
$this->Orders_model->COLI_ID = $this->Orders_model->MakeOrderNumber();
$this->Orders_model->COLI_SenderIP = $this->input->ip_address();
$this->Orders_model->COLI_OrderDetailText = ReplaceFieldName($_POST);
$this->Orders_model->COLI_Servicetype = 'T';
$this->Orders_model->COLI_sourcetype = '32001';
//增加订单跟踪代码
if (isset($_COOKIE['inquireTrackFrom'])) {
if (is_numeric($_COOKIE['inquireTrackFrom'])) {
$this->Orders_model->COLI_sourcetype = (int) $_COOKIE['inquireTrackFrom'];
setcookie("inquireTrackFrom", $_COOKIE['inquireTrackFrom'], 0, '/');
}
}
//Trace GOOGLE
if (isset($_COOKIE['inquireTrackGoogle'])) {
$google_str = get_para_from_url($_COOKIE['inquireTrackGoogle'], 'q');
$this->Orders_model->COLI_OrderDetailText .= "\n\rGOOGLE关键字" . $google_str;
setcookie("inquireTrackGoogle", $_COOKIE['inquireTrackGoogle'], 0, '/');
$this->Orders_model->COLI_Keywords = $google_str;
}
$this->Orders_model->COLI_GroupType = '19002';
$this->Orders_model->COLI_OrderType = '19002';
$this->Orders_model->COLI_Name = $this->input->post('cli_no') . ' ' . $this->
input->post('cli_tourtitle');
$this->Orders_model->COLI_PersonNum = $this->input->post('adultenum');
$this->Orders_model->COLI_ChildNum = $this->input->post('childnum');
$this->Orders_model->COLI_BabyNum = $this->input->post('babynum');
$this->Orders_model->COLI_OrderStartDate = $this->input->post('starting_date');
$this->Orders_model->COLI_Days = $this->input->post('cli_tourdays');
$this->Orders_model->MEI_MailList = $this->input->post('email');
$this->Orders_model->MEI_Mail = $this->input->post('email2');
$pos = strstr($this->input->post('realname'), ' ');
if ($pos === false) {
$this->Orders_model->MEI_FirstName = $this->input->post('realname');
} else {
$this->Orders_model->MEI_FirstName = str_replace($pos, '', $this->input->post('realname'));
$this->Orders_model->MEI_LastName = $pos;
}
$this->Orders_model->MEI_Nationality = $this->Orders_model->GetNationalityID($this->
input->post('nationality'));
$this->Orders_model->MEI_Gender = $this->input->post('gender');
$this->Orders_model->MEI_Phone = $this->input->post('phoneno');
$this->Orders_model->COLI_ProductSN = $this->input->post('cli_sn');
bind_email($this->Orders_model->MEI_MailList);
$this->Orders_model->TourOrderSave();
$this->Orders_model->SendMail($this->input->post('realname'), $this->input->
post('email'), $this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), 'Group Tour Orders', $this->Orders_model->COLI_OrderDetailText);
//发送邮件给客人
$this->Orders_model->SendMail($this->config->item('Site_ServiceName'), $this->config->item('Site_ServiceEmail'), $this->input->post('realname'), $this->input->
post('email'), 'Group Tour Orders', $this->load->view('orders/email_template', '', true));
$data[] = array('name' => 'ok', 'value' => site_url('orders/group-tour-thankyou/'));
echo json_encode($data);
}
}
public function group_tour_thankyou() {
$data = array();
$this->html_do->head($data, 'r');
$data['PPCCode'] = $this->lang->line('PPC_group_tour');
$this->load->view('orders/r_thankyou/' . $this->site_code, $data);
}
public function tour_price() {
$CLI_Price = $this->Tours_model->GetTourPrice($this->input->post('cli_no'), $this->
input->post('adultenum'), $this->input->post('cli_grade'), $this->input->post('season'), $this->input->post('starting_date'));
if ($CLI_Price === false) {
echo 'null';
} else {
echo $CLI_Price->Tour_Price;
}
}
}

@ -0,0 +1,50 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*
* Maps to the following URL
* http://example.com/index.php/welcome
* - or -
* http://example.com/index.php/welcome/index
* - or -
* Since this controller is set as the default controller in
* config/routes.php, it's displayed at http://example.com/
*
* So any other public methods not prefixed with an underscore will
* map to /index.php/welcome/<method_name>
* @see http://codeigniter.com/user_guide/general/urls.html
*/
public function index() {
echo 'index';
}
//跳转函数用来跟踪PPC订单或者newsletter链接等等
public function redirect() {
//要转向的URL
$url = $this->input->get('url');
//订单类型 Google PPC 32034 Bing PPC 32035
$typecode = $this->input->get('code');
if (!empty($typecode)) {
set_cookie('inquireTrackFrom', $typecode, 604800); //604800秒=7天过期时间
}
//获取google的搜索来源
if (isset($_SERVER['HTTP_REFERER'])) {
$inquireTrackGoogle = $_SERVER['HTTP_REFERER'];
set_cookie('inquireTrackGoogle', $inquireTrackGoogle, 604800); //604800秒=7天过期时间
}
redirect($url);
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,34 @@
<html>
<head>
<title>404 Page Not Found</title>
<style type="text/css">
body {
background-color: #fff;
margin: 40px;
font-family: Lucida Grande, Verdana, Sans-serif;
font-size: 12px;
color: #000;
}
#content {
border: #999 1px solid;
background-color: #fff;
padding: 20px 20px 12px 20px;
}
h1 {
font-weight: normal;
font-size: 14px;
color: #990000;
margin: 0 0 4px 0;
}
</style>
</head>
<body>
<div id="content">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

@ -0,0 +1,34 @@
<html>
<head>
<title>Database Error</title>
<style type="text/css">
body {
background-color: #fff;
margin: 40px;
font-family: Lucida Grande, Verdana, Sans-serif;
font-size: 12px;
color: #000;
}
#content {
border: #999 1px solid;
background-color: #fff;
padding: 20px 20px 12px 20px;
}
h1 {
font-weight: normal;
font-size: 14px;
color: #990000;
margin: 0 0 4px 0;
}
</style>
</head>
<body>
<div id="content">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

@ -0,0 +1,34 @@
<html>
<head>
<title>Error</title>
<style type="text/css">
body {
background-color: #fff;
margin: 40px;
font-family: Lucida Grande, Verdana, Sans-serif;
font-size: 12px;
color: #000;
}
#content {
border: #999 1px solid;
background-color: #fff;
padding: 20px 20px 12px 20px;
}
h1 {
font-weight: normal;
font-size: 14px;
color: #990000;
margin: 0 0 4px 0;
}
</style>
</head>
<body>
<div id="content">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

@ -0,0 +1,10 @@
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>
</div>

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,321 @@
<?php
/**
* PHP 301 转向
* @param $url String 转向的URL
*/
function php_301($url = '') {
if (!empty($url)) {
header("Location: " . $url, true, 301);
return;
} else {
log_message('error', '错误的301转向');
echo '404';
}
}
/**
* 获取iis rewrite之前的原始url
*/
function get_origin_url() {
if (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
$origin_url = $_SERVER['HTTP_X_REWRITE_URL'];
} else {
$origin_url = $_SERVER['REQUEST_URI'];
}
return str_replace(array(
'///',
'/index.php',
'/info.php',
'@cache@refresh'), array(
'/',
'/',
'/',
''), urldecode($origin_url));
}
//由下方法ReplaceFieldName修改由于AH需求全英文所以不需替换中文 lzq
function ReplaceFieldName($fields) {
$CI = &get_instance();
$CI->load->model('Orders_model');
$OrderDetailText = '';
foreach ($fields as $key => $value) {
if ((strtolower($key) == 'date_start' || strtolower($key) == 'rdate' || strtolower($key) == 'starting_date' || strtolower($key) == 'youlun_date' || strtolower($key) == 'Arrive_date' || strtolower($key) == 'Depart_date' || strtolower($key) == 'date_end') && !empty($value)) {
$value = date('M/d/Y', strtotime($value));
}
if (is_array($value)) {
$value = implode(',', $value);
}
switch ($key) {
case 'adultsNumber':
$OrderDetailText .= 'Adults' . ':' . $value . "\n";
break;
case 'ChildrenNumber':
$OrderDetailText .= 'Youths' . ':' . $value . "\n";
break;
case 'BabiesNumber':
$OrderDetailText .= 'Children' . ':' . $value . "\n";
break;
case 'cli_tourdays':
$OrderDetailText .= 'Trip Length' . ':' . $value . "\n";
break;
case 'Date_Start':
$OrderDetailText .= 'Date of Arrival' . ':' . $value . "\n";
break;
case 'daysFlexible':
$OrderDetailText .= 'Days Flexible' . ':' . $value . "\n";
break;
case 'flexible_date':
$OrderDetailText .= 'Days Flexible' . ':' . $value . "\n";
break;
case 'hotel':
$OrderDetailText .= 'Hotel' . ':' . $value . "\n";
break;
case 'guiding':
$OrderDetailText .= 'Guiding' . ':' . $value . "\n";
break;
case 'city':
$OrderDetailText .= 'Expected cities' . ':' . $value . "\n";
break;
case 'additionalrequirements':
$OrderDetailText .= 'Additional request' . ':' . $value . "\n";
break;
case 'realname':
$OrderDetailText .= 'Name' . ':' . $value . "\n";
break;
case 'realname':
$OrderDetailText .= 'Name' . ':' . $value . "\n";
break;
case 'gender':
if ($value == 100001) {
$OrderDetailText .= 'Gender' . ':' . 'Man' . "\n";
} else {
$OrderDetailText .= 'Gender' . ':' . 'Woman' . "\n";
}
break;
case 'email':
$OrderDetailText .= 'Email' . ':' . $value . "\n";
break;
case 'PhoneNo':
$OrderDetailText .= 'Telephone' . ':' . $value . "\n";
break;
case 'seriousBooking':
$OrderDetailText .= 'Serious Booking' . ':' . $value . "\n";
break;
default:
if (!empty($value)) {
$OrderDetailText .= $key . ':' . $value . "\n";
}
}
}
if (isset($_SERVER['HTTP_REFERER'])) {
$OrderDetailText .= 'Inquiry page' . $_SERVER['HTTP_REFERER'];
}
switch (check_device()) {
case 'mobile':
$OrderDetailText = 'Devicemobile' . "\n" . $OrderDetailText;
break;
case 'tablet':
$OrderDetailText = 'Devicetablet' . "\n" . $OrderDetailText;
break;
default:
$OrderDetailText = 'Devicecomputer' . "\n" . $OrderDetailText;
}
return $OrderDetailText;
}
function GetChineseFieldName($name) {
$name = strtolower($name);
$name_arr = array(
'realname' => '客人姓名',
'email' => '电子邮箱',
'isfrom' => '订单',
'gender' => '性别',
'100001' => '男',
'100002' => '女',
'100003' => '女',
'title' => '性别',
'nationality' => '国籍',
'destinationcode2' => 'destinationcode2',
'email2' => '备用邮箱',
'otheremail' => '备用邮箱',
'phoneno' => '电话号码',
'phone' => '电话号码',
'additionalrequirements' => '更多需求',
'promocode' => '优惠码',
'newsletter' => '是否预定newsletter',
'cli_no' => '线路代号',
'cli_tourtitle' => '线路名称',
'cli_tourdays' => '线路时长',
'cli_price' => '线路价格',
'guidelanguage' => '导游语种',
'otherguidelanguage' => '备用导游语种',
'tourspecial' => '选中的城市',
'sc' => '选中的城市',
'tourspecial2' => '选择的景点',
'sc2' => '选择的景点',
'flexiblecheck' => '是否是固定行程日期',
'flexiblecheckselect' => '是否是固定行程日期',
'flexible_date_month' => '大致的月份',
'flexible_date_year' => '大致的年份',
'staying_days' => '旅行天数',
'preferredtransport' => '交通方式',
'otherpreferredtransport' => '备选交通方式',
'breakfast' => '早餐选择',
'lunch' => '午餐选择',
'dinner' => '晚餐选择',
'hotelclass' => '酒店星级',
'numberofrooms' => '酒店房间数',
'roomrequirement' => '房间要求',
'roomrequirementselect' => '房间要求',
'starting_date' => '开始时间',
'ending_date' => '结束时间',
'adultenum' => '成人数',
'adultsnumber' => '成人数',
'childnum' => '小孩数',
'childrennumber' => '小孩数',
'babynum' => '婴儿数',
'babiesnumber' => '婴儿数',
'cli_grade' => '线路星级',
'7001' => '四星',
'7002' => '五星',
'7003' => '三星',
'subject' => '订单主题',
'cli_sn' => '线路编号',
'season' => '淡旺季(1旺季2淡季)',
'aperson' => '旅客人数',
'guidestyle' => '导游',
'adult_num' => '成人数',
'child_num' => '儿童数',
'baby_num' => '婴儿数',
'twin_num' => '无效字段',
'share_num' => '无效字段',
'national' => '国籍',
'other_request' => '其他请求',
'shipname' => '游船',
'rdate' => '发船日期',
'days' => '天数',
'ship_sn' => '游船SN',
'room' => '房型',
'no_ajax' => '传值类型(外联不用管这项)',
'cm_number' => '团队类型',
'cm_city' => '目的地',
'sections' => '子项目',
'cm_hotelstar' => '酒店等级',
'cm_guidelang' => '导游语种',
'cm_traffic' => '交通工具',
'cm_guidetime' => '导游服务',
'date_start' => '出发时间',
'Date_Start' => '出发时间',
'date_end' => '结束时间',
'from_guang_jiao_hui' => '广交会订单',
'price' => '预算/价格/等级',
'youlun_name' => '游轮订单-游轮',
'youlun_date' => '游轮订单-出发日期',
'youlun_gangkou' => '游轮订单-港口城市',
'youlun_num' => '游轮订单-人数',
'flexible' => '日期是否可变更',
'post_url' => '订单来源/着陆页',
'q_url' => '订单来源/着陆页',
'allnumber' => '人数',
'passport_text' => '护照',
'birth_text' => '出生日期',
'bloodstyle' => '血型',
'tshirt' => 'T恤尺寸',
'malasong' => '马拉松',
'malasong_else' => '马拉松其他需求',
'malasong_exp' => '马拉松参赛经验',
'guide_old' => '客人年纪',
'OoPdest' => '火车发站-到站',
'OoPDepartureTime' => '火车出发日期',
'business_guide' => '是否需要导游',
'business_attraction' => '景点',
'business_attraction_else' => '其他感兴趣的景点',
'business_request' => '其他需求',
'business_date' => '出发日期',
'business_guidelang' => '导游语种',
'tbgp_date' => '固定发团日期',
'sex_text' => '性别');
if (isset($name_arr[$name])) {
return $name_arr[$name];
} else {
return $name;
}
}
//来源终端 tablet mobile desktop
function check_device() {
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$ua = $_SERVER['HTTP_USER_AGENT'];
} else {
$ua = '';
}
## This credit must stay intact (Unless you have a deal with @lukasmig or frimerlukas@gmail.com
## Made by Lukas Frimer Tholander from Made In Osted Webdesign.
## Price will be $2
$iphone = strstr(strtolower($ua), 'mobile'); //Search for 'mobile' in user-agent (iPhone have that)
$android = strstr(strtolower($ua), 'android'); //Search for 'android' in user-agent
$windowsPhone = strstr(strtolower($ua), 'phone'); //Search for 'phone' in user-agent (Windows Phone uses that)
if (!function_exists('androidTablet')) {
function androidTablet($ua) { //Find out if it is a tablet
if (strstr(strtolower($ua), 'android')) { //Search for android in user-agent
if (!strstr(strtolower($ua), 'mobile')) { //If there is no ''mobile' in user-agent (Android have that on their phones, but not tablets)
return true;
}
}
}
}
$androidTablet = androidTablet($ua); //Do androidTablet function
$ipad = strstr(strtolower($ua), 'ipad'); //Search for iPad in user-agent
if ($androidTablet || $ipad) { //If it's a tablet (iPad / Android)
return 'tablet';
} elseif ($iphone && !$ipad || $android && !$androidTablet || $windowsPhone) { //If it's a phone and NOT a tablet
return 'mobile';
} else { //If it's not a mobile device
return 'desktop';
}
}
//使用正则匹配出价格标签,返回一个价格数组
function price_pregmatch($content) {
$price_array = array();
$temp_array = array();
$result = false;
//#ah-1,lx,25,2016-01-23#
preg_match_all('^#[a-zA-Z0-9,-]+#^', $content, $temp_array);
foreach ($temp_array[0] as $item) {
$placeholder = $item;
$item = str_replace('#', '', $item);
$price_array = explode(',', $item);
$cli_no = !empty($price_array[0]) ? $price_array[0] : false; //线路代号
if (empty($cli_no)) {
continue; //没有设置线路代号则进入下一条
}
$cli_grade = !empty($price_array[1]) ? $price_array[1] : false; //标准7001、豪华7002、经济7003
switch ($cli_grade) {
case 'st':
$cli_grade = '7001';
break;
case 'lx':
$cli_grade = '7002';
break;
case 'ec':
$cli_grade = '7003';
break;
default :$cli_grade = false;
}
$person_size = !empty($price_array[2]) ? $price_array[2] : false; //人等1,2-5,6-9,10
$price_date = !empty($price_array[3]) ? $price_array[3] : false; //价格时间
$result[] = (object) array('placeholder' => $placeholder, 'cli_no' => $cli_no, 'cli_grade' => $cli_grade, 'person_size' => $person_size, 'price_date' => $price_date);
}
return $result;
}

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,14 @@
<?php
$lang['required'] = "%s";
$lang['valid_email'] = "%s";
$lang['max_length'] = "%s";
$lang['numeric'] = "%s";
$lang['realname'] = 'Please enter your full name.';
$lang['email'] = 'Please enter your email.Eg: service@asiahighlights.com';
$lang['additionalrequirements']='Please tell us your travel destinations, your interests, and your special requirements.';
$lang['hotel']='Please select your hotel style.';
$lang['comments']='Please tell us your travel destinations, your interests, and your special requirements.';
$lang['nationality']='Please select your nationality.';
$lang['tourdays']='Please select your tour days.';

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,91 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Captcha_code
{
var $width='60';
var $num='4';
var $height='20';
var $name='randcode';
public function __construct($conf="")
{
if($conf!="")
{
foreach($conf as $key=>$value)
{
$this->$key=$value;
}
}
}
function show()
{
Header("Content-type: image/gif");
/*
* 初始化
*/
$border = 0; //是否要边框 1要:0不要
$how = $this->num; //验证码位数
$w = $this->width; //图片宽度
$h = $this->height; //图片高度
$fontsize = 5; //字体大小
$alpha = "abcdefghijkmnopqrstuvwxyz"; //验证码内容1:字母
$number = "023456789"; //验证码内容2:数字
$randcode = ""; //验证码字符串初始化
srand((double)microtime()*1000000); //初始化随机数种子
$im = ImageCreate($w, $h); //创建验证图片
/*
* 绘制基本框架
*/
$bgcolor = ImageColorAllocate($im, 255, 255, 255); //设置背景颜色
ImageFill($im, 0, 0, $bgcolor); //填充背景色
if($border)
{
$black = ImageColorAllocate($im, 0, 0, 0); //设置边框颜色
ImageRectangle($im, 0, 0, $w-1, $h-1, $black);//绘制边框
}
/*
* 逐位产生随机字符
*/
for($i=0; $i<$how; $i++)
{
$alpha_or_number = mt_rand(0, 1); //字母还是数字
$str = $alpha_or_number ? $alpha : $number;
$which = mt_rand(0, strlen($str)-1); //取哪个字符
$code = substr($str, $which, 1); //取字符
$j = !$i ? 4 : $j+15; //绘字符位置
$color3 = ImageColorAllocate($im, mt_rand(0,100), mt_rand(0,100), mt_rand(0,100)); //字符随即颜色
ImageChar($im, $fontsize, $j, 3, $code, $color3); //绘字符
$randcode .= $code; //逐位加入验证码字符串
}
/*
* 添加干扰
*/
for($i=0; $i<5; $i++)//线
{
$color1 = ImageColorAllocate($im, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)); //干扰线颜色
ImageArc($im, mt_rand(-5,$w), mt_rand(-5,$h), mt_rand(20,300), mt_rand(20,200), 55, 44, $color1); //干扰线
}
for($i=0; $i<$how*15; $i++)//绘背景干扰点
{
$color2 = ImageColorAllocate($im, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)); //干扰点颜色
ImageSetPixel($im, mt_rand(0,$w), mt_rand(0,$h), $color2); //干扰点
}
//把验证码字符串写入session
//$this->session->set_userdata(array($this->name=>$randcode));
session_start();
$_SESSION[$this->name]=$randcode;
/*绘图结束*/
Imagegif($im);
ImageDestroy($im);
/*绘图结束*/
}
}

@ -0,0 +1,155 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* 自动加载语种标签
*/
class Currency {
var $USD_Rate; //人民币兑美元汇率
var $EUR_Rate; //人民币兑欧元汇率
var $RUB_Rate; //人民币兑卢布汇率
public function __construct() {
$this->CI = & get_instance();
log_message('debug', "Language Tags Class Initialized");
$this->GetCurrencyRate();
}
function GetCurrencyRate() {
$this->HT = $this->CI->load->database('HT', TRUE);
$sql = "SELECT CRI_BuyIn / 100.00 AS tmpExRate, \n"
. " CRI_Code \n"
. "FROM tourmanager.dbo.CurrencyRateInfo \n"
. "WHERE CRI_Code IN ('USD', 'EUR', 'RUB') \n"
. " AND GETDATE() BETWEEN CRI_Start AND CRI_Stop";
$query = $this->HT->query($sql);
foreach ($query->result() as $item) {
switch ($item->CRI_Code) {
case 'USD':
$this->USD_Rate = $item->tmpExRate;
break;
case 'EUR':
$this->EUR_Rate = $item->tmpExRate;
break;
case 'RUB':
$this->RUB_Rate = $item->tmpExRate;
break;
}
}
// echo $this->USD_Rate . '<br/>';
// echo $this->EUR_Rate . '<br/>';
// echo $this->RUB_Rate . '<br/>';
return $query->result();
}
//根据人民币转换成站点对应的货币
public function GetSiteMoney($RMB) {
if (!is_numeric($RMB))
{
return $RMB;
}
$result = $RMB;
if (is_numeric($RMB)) {
switch (CONST_SITE_CURRENCY) {
case 'USD':
$result = $RMB / $this->USD_Rate;
break;
case 'EUR':
$result = $RMB / $this->EUR_Rate;
break;
case 'RUB':
$result = $RMB / $this->RUB_Rate;
break;
}
}
return ceil($result);
}
//把美金转换为人民币
public function get_USD_RMB_SUM($USD) {
if (!is_numeric($USD))return $USD;
$result = $USD;
$result = $USD * $this->USD_Rate;
return ceil($result);
}
/**
* 返回站点的汇率。
*
* @author lmr
*/
public function get_site_currencyrate() {
switch (CONST_SITE_CURRENCY) {
case 'USD':
return $this->USD_Rate;
case 'EUR':
return $this->EUR_Rate;
case 'RUB':
return $this->RUB_Rate;
default:
return 1;
}
}
/**
* 返回带money_char的价格。
*
* @param $money Int 价格.
* @return String 带货币符号的价格。
*/
public function get_money_char($money='') {
switch (CONST_SITE_CODE) {
case 'JP':
return $money.'元';
case 'GM':
return '€'.$money;
case 'VC':
return $money.'€';
case 'VAC':
return '$'.$money;
case 'RU':
return '$'.$money;
case 'IT':
return '€'.$money;
case 'SHT':
return '$'.$money;
default:
return '$'.$money;
}
}
/**
* 返回带money_char的价格。
*
* @param $money Int 价格.
* @return String 带货币符号的价格。
*/
public function get_site_money_with_char($money='') {
return $this->get_money_char($this->GetSiteMoney($money));
}
/**
* RMB换算成指定货币。
* @param int money RMB
* @param string char 货币代号usdeur
* @return int 换算价格
*/
public function convert_moneny_by_char($money,$char='')
{
switch (strtolower($char))
{
case 'usd':
return ceil($money/$this->USD_Rate);
case 'eur':
return ceil($money/$this->EUR_Rate);
}
return $money;
}
}

@ -0,0 +1,115 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
//常量配置
define("COST_TIME",2);//限制时间,单位分钟
define("COST_COUNT",10);//限制次数
class Illegal_submit{
private $CI;
private $conn;//数据库连接资源
//ip黑名单
private $ip_blacklist=array();//array("202.103.68.34","202.103.68.30");
//邮箱黑名单
private $email_blacklist=array();
function __construct(){
$this->CI = & get_instance();
$this->HT = $this->CI->load->database('HT', TRUE);
}
function test(){
$sql="SELECT top 1 * from ConfirmLineInfoTmp";
$query = $this->HT->query($sql);
var_dump($query->result());
}
public function verify_view(){
$list["r"]=$this->CI->input->post();
unset($list["r"]["_ver"]);//验证码不需要再传输,所以去掉
echo $this->CI->load->view('orders/ver_img',$list,true);
session_start();
if($_SESSION["randcode"]===@$_POST["_ver"]){
return true;
}
}
public function verify($ip="",$email=""){
if(in_array($ip, $this->ip_blacklist) or in_array($email, $this->email_blacklist)){
//此ip或者邮箱在黑名单
return $this->verify_view();
}else{
$sql="SELECT count(*)
FROM ConfirmLineInfoTmp
WHERE (COLI_SenderIP='{$ip}'
OR (
SELECT MEI_MailList
FROM MEmberInfoTmp
WHERE MEI_SN=(SELECT CUL_CUI_SN FROM CUstomerListTmp WHERE CUL_COLI_SN=ConfirmLineInfoTmp.COLI_SN)
)='{$email}')
AND COLI_ApplyDate>DATEADD(n,-".COST_TIME.",GETDATE())";
$r=$this->_fetch_array($sql);
//如果数据多于配置的阈值返回false
if($r[0]<COST_COUNT){
// return FALSE;//需要验证
return $this->verify_view();
}else{
return TRUE;//不需要验证
}
}
}
public function verify_ft($ip="",$email="",$post=""){
if(in_array($ip, $this->ip_blacklist) or in_array($email, $this->email_blacklist)){
//此ip或者邮箱在黑名单
return FALSE;
}else{
$sql="SELECT count(*)
FROM ConfirmLineInfoTmp
WHERE (COLI_SenderIP='{$ip}'
OR (
SELECT MEI_MailList
FROM MEmberInfoTmp
WHERE MEI_SN=(SELECT CUL_CUI_SN FROM CUstomerListTmp WHERE CUL_COLI_SN=ConfirmLineInfoTmp.COLI_SN)
)='{$email}')
AND COLI_ApplyDate>DATEADD(n,-".COST_TIME.",GETDATE())";
$query = $this->HT->query($sql);
$r=$query->result();
if($r){
//如果数据多于配置的阈值返回false
if($r[0]->count_num<COST_COUNT){
// return FALSE;//需要验证
return FALSE;
}else{
return TRUE;//不需要验证
}
}else{
return TRUE;//不需要验证
}
}
}
public function verify_image(){
$this->CI->load->library('Captcha_code');
// $this->CI->load->library("session");
$this->CI->captcha_code->show();
// $yzm_session = $this->CI->session->userdata('verify_code');
// echo $yzm_session;
}
public function view(){
}
}

@ -0,0 +1,12 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class MY_Form_validation extends CI_Form_validation
{
//提升CI_Form_validation类库的错误记录变量属性前台程序需要用来读取每个表单的错误信息
public $_error_array = array();
}

@ -0,0 +1,330 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* 分析和替换内容中的动态程序
*/
class Tags_analysis {
private $CI;
public function __construct() {
$this->CI = & get_instance();
$this->CI->load->model('InfoMetas_model');
$this->CI->load->model('CustomerLineInfo_model');
$this->CI->load->model('Price_model');
$this->CI->load->model('PrimeLinePrice_model');
$this->CI->load->model('BIZ_PackagePrice_model');
$this->CI->load->model('BIZ_PackageInfo_model');
$this->CI->load->library('Currency');
$this->CI->load->model('Information_model');//CSK
}
//解析内容中的标签tag
public function analysis($information) {
$data = array();
//信息页面展示产品价格和表单 /////////////////////////////////////////////
$data['detail'] = $information; //引用上面查到的数据
//如果是产品类型,则需要查询绑定的线路代号,把内容中的占位符替换掉
switch ($data['detail']->ic_type) {
case 'pd_tour':
$meta_product_code = $this->CI->InfoMetas_model->get($data['detail']->ic_id, 'meta_product_code');
if (!empty($meta_product_code)) {
$data['pd_tour'] = $this->CI->CustomerLineInfo_model->search($meta_product_code, 1);
//print_r($data['pd_tour']);
if (!empty($data['pd_tour'])) {
//填充预订表单模板
if (strpos($data['detail']->ic_content, '@BOOKINGFORM@') !== false) { //默认使用booking_form_inquiry模板
//$pd_booking_from = $this->CI->load->view('tags/' . Site_Code . '/booking_form', $data, true);
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_inquiry', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM@', $pd_booking_from, $data['detail']->ic_content);
}
//填充预订表单模板
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-PAYNOW@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_paynow', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-PAYNOW@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-TOUR@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_tour', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-TOUR@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-INQUIRY@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_inquiry', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-INQUIRY@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-INQUIRY-SMALL@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_inquiry_small', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-INQUIRY-SMALL@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-BUTTON@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_button', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-BUTTON@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-BUTTON-FOOTER@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_button_footer', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-BUTTON-FOOTER@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-STYLE@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_style', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-STYLE@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-QUOTE@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_quote', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-QUOTE@', $pd_booking_from, $data['detail']->ic_content);
}
if (strpos($data['detail']->ic_content, '@BOOKING-INQUIRY-NOW@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_inquiry_now', $data, true);
$data['detail']->ic_content = str_replace('@BOOKING-INQUIRY-NOW@', $pd_booking_from, $data['detail']->ic_content);
}
}
}
break;
case 'pd_package':
$meta_product_code = $this->CI->InfoMetas_model->get($data['detail']->ic_id, 'meta_product_code');
if (!empty($meta_product_code)) {
$data['pd_package'] = $this->CI->BIZ_PackageInfo_model->search($meta_product_code, 1);
//print_r($data['pd_tour']);
if (!empty($data['pd_package'])) {
//填充预订表单模板
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-PACKAGE@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_package', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-PACKAGE@', $pd_booking_from, $data['detail']->ic_content);
}
//填充预订表单模板
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-PACKAGE-DESTINATION@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_package_destination', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-PACKAGE-DESTINATION@', $pd_booking_from, $data['detail']->ic_content);
}
}
}
break;
default:;
}
//问题表单
if (strpos($data['detail']->ic_content, '@BOOKINGFORM-INQUIRY_LIST@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_form_inquiry_list', $data, true);
$data['detail']->ic_content = str_replace('@BOOKINGFORM-INQUIRY_LIST@', $pd_booking_from, $data['detail']->ic_content);
}
//左侧导航
if (strpos($data['detail']->ic_content, '@INFO-LEFT-MENU@') !== false) {
$list["same_level"]=$this->CI->Information_model->get_same_level($data['detail']->is_parent_id,10); //csk 2016-11-11 改成10条
$list["parent"]=$this->CI->Information_model->get_detail($data['detail']->is_parent_id);
$flg=TRUE;
foreach ($list["same_level"] as $key=>$v){
if($v->ic_url==$data['detail']->ic_url){
$flg=FALSE;
}
if($key==(count($list["same_level"])-1) && $flg){
//本页不存在前面五条链接之中,把$list["same_level"]最后一条换成本页链接
$list["same_level"][$key]->ic_url=$data['detail']->ic_url;
$list["same_level"][$key]->ic_url_title=$data['detail']->ic_url_title;
}
}
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_left_menu', $list, true);
$data['detail']->ic_content = str_replace('@INFO-LEFT-MENU@', $pd_booking_from, $data['detail']->ic_content);
}
//底部推荐
if (strpos($data['detail']->ic_content, '@INFO-YOU-MAY-LIKE@') !== false) {
$meta_recommend_info = $this->CI->InfoMetas_model->get($data['detail']->ic_id, 'meta_recommend_info');
if(empty($meta_recommend_info)){
$list["data"]=array();
}else{
$list["data"]=$this->CI->Information_model->get_some_detail($meta_recommend_info);
}
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_you_may_like', $list, true);
$data['detail']->ic_content = str_replace('@INFO-YOU-MAY-LIKE@', $pd_booking_from, $data['detail']->ic_content);
}
//面包屑 home > 父级链接 >本页
if (strpos($data['detail']->ic_content, '@INFO-CRUMBS@') !== false) {
$list["oneself"]=$this->CI->Information_model->get_detail($data['detail']->is_id);
$list["parent"]=$this->CI->Information_model->get_detail($data['detail']->is_parent_id);
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_crumbs', $list, true);
$data['detail']->ic_content = str_replace('@INFO-CRUMBS@', $pd_booking_from, $data['detail']->ic_content);
}
//页面中有价格标签,查出价格并替换内容
$price_item_array = $this->price_pregmatch($data['detail']->ic_content);
if (!empty($price_item_array)) {
foreach ($price_item_array as $price_item) {
$price_date = !empty($price_item->price_date) ? $price_item->price_date : date('Y-m-d', time() + 86400 * 7); //当前时间7天后的价格
$price_number = '';
//优先读取新的价格体系
$price = $this->CI->PrimeLinePrice_model->search($price_item->cli_no, 1, $price_item->cli_grade, $price_item->person_size, $price_date);
if (!empty($price)) {
switch (strtoupper($price_item->price_people)) {
case 'A':
$price_number = $price->PLP_AdultUnitPrice;
break;
case 'C':
$price_number = $price->PLP_ChildUnitPrice;
break;
case 'B':
$price_number = $price->PLP_BabyUnitPrice;
break;
case 'R':
$price_number = $price->PLP_RoomDiffPrice;
break;
case 'AR':
$price_number = $price->PLP_AdultUnitPrice + $price->PLP_RoomDiffPrice; //成人加单间房差
break;
default :
$price_number = $price->PLP_AdultUnitPrice;
}
} else {
$price = $this->CI->Price_model->search($price_item->cli_no, 1, $price_item->cli_grade, false, $price_date);
if (!empty($price)) {
switch ($price_item->person_size) {
case '1':
$price_number = $price->CLP_OneAdultPriceRMB;
break;
case '2'://25
$price_number = $price->CLP_TwoToFiveAdultPriceRMB;
break;
case '6'://69
$price_number = $price->CLP_SixToNineAdultPriceRMB;
break;
case '10':
$price_number = $price->CLP_OverTenAdultPriceRMB;
break;
default:
$price_number = $price->CLP_TwoToFiveAdultPriceRMB;
}
}
}
//把金额格式化为带有逗号(,)方便阅读,如 12,345
$price_number = is_numeric($price_number) ? number_format($this->CI->currency->GetSiteMoney($price_number)) : $price_number;
if (!empty($price_number)) {
$data['detail']->ic_content = str_replace($price_item->placeholder, $price_number, $data['detail']->ic_content);
}
}
}
//替换包价线路价格 begin
$price_item_array = $this->package_price_pregmatch($data['detail']->ic_content);
if (!empty($price_item_array)) {
foreach ($price_item_array as $price_item) {
$price_date = !empty($price_item->price_date) ? $price_item->price_date : date('Y-m-d', time() + 86400 * 3); //当前时间3天后的价格
$price_number = '';
//优先读取新的价格体系
$price = $this->CI->BIZ_PackagePrice_model->search($price_item->pag_code, 1, $price_item->person_size, $price_date);
if (!empty($price)) {
switch (strtoupper($price_item->price_people)) {
case 'A':
$price_number = $price->PKP_AdultPrice;
break;
case 'C':
$price_number = $price->PKP_ChildPrice;
break;
case 'B':
$price_number = $price->PKP_InfantPrice;
break;
default :
$price_number = $price->PKP_AdultPrice;
}
}
//把金额格式化为带有逗号(,)方便阅读,如 12,345
$price_number = is_numeric($price_number) ? number_format($this->CI->currency->GetSiteMoney($price_number)) : $price_number;
if (!empty($price_number)) {
$data['detail']->ic_content = str_replace($price_item->placeholder, $price_number, $data['detail']->ic_content);
}
}
}
//替换包价线路价格 end
//信息页面展示产品价格和表单 end/////////////////////////////////////////////
return $data['detail']->ic_content;
}
//使用正则匹配出价格标签,返回一个价格数组
private function price_pregmatch($content) {
$price_array = array();
$temp_array = array();
$result = false;
//#ah-1,lx,2,2016-01-23,A#
//线路代号,等级(st标准、lx豪华、ec经济),人等,时间,人型(A成人、C小孩、B婴儿、R单间房差、AR成人+房差)
preg_match_all('^#[a-zA-Z0-9,-]+#^', $content, $temp_array);
foreach ($temp_array[0] as $item) {
$placeholder = $item;
$item = str_replace('#', '', $item);
$price_array = explode(',', $item);
$cli_no = !empty($price_array[0]) ? $price_array[0] : false; //线路代号
if (empty($cli_no)) {
continue; //没有设置线路代号则进入下一条
}
$cli_grade = !empty($price_array[1]) ? $price_array[1] : false; //标准7001、豪华7002、经济7003
switch (strtoupper($cli_grade)) {
case 'ST':
$cli_grade = '7001';
break;
case 'LX':
$cli_grade = '7002';
break;
case 'EC':
$cli_grade = '7003';
break;
default :$cli_grade = '7001';
}
$person_size = (!empty($price_array[2]) && is_numeric($price_array[2])) ? $price_array[2] : 2; //人等1,2-5,6-9,10默认2人等
//为了兼容以前的人等方式,把算数人等转换为单数 25=>2
switch ($person_size) {
case '25':
$person_size = '2';
break;
case '69':
$person_size = '6';
break;
}
$price_date = !empty($price_array[3]) ? $price_array[3] : false; //价格时间
$price_people = !empty($price_array[4]) ? $price_array[4] : 'A'; //A成人、C小孩、B婴儿、R单间房差
$result[] = (object) array('placeholder' => $placeholder, 'cli_no' => $cli_no, 'cli_grade' => $cli_grade, 'person_size' => $person_size, 'price_date' => $price_date, 'price_people' => $price_people);
}
return $result;
}
//使用正则匹配出包价线路价格标签,返回一个价格数组
private function package_price_pregmatch($content) {
$price_array = array();
$temp_array = array();
$result = false;
//{shsic-11,2,2016-01-23,A} 线路代号,人等,时间,人型
preg_match_all('^\{[a-zA-Z0-9,-]+\}^', $content, $temp_array);
foreach ($temp_array[0] as $item) {
$placeholder = $item;
$item = str_replace('{', '', $item);
$item = str_replace('}', '', $item);
$price_array = explode(',', $item);
$pag_code = !empty($price_array[0]) ? $price_array[0] : false; //线路代号
if (empty($pag_code)) {
continue; //没有设置代号则进入下一条
}
$person_size = (!empty($price_array[1]) && is_numeric($price_array[1])) ? $price_array[1] : 2; //人等1,2-5,6-9,10默认2人等
$price_date = !empty($price_array[2]) ? $price_array[2] : false; //价格时间
$price_people = !empty($price_array[3]) ? $price_array[3] : 'A'; //A成人、C小孩、B婴儿
$result[] = (object) array('placeholder' => $placeholder, 'pag_code' => $pag_code, 'person_size' => $person_size, 'price_date' => $price_date, 'price_people' => $price_people);
}
return $result;
}
}

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,61 @@
<?php
class BIZ_PackageInfo_model extends CI_Model {
var $topnum = false; //返回记录数
var $pag_code = false; //线路代号
var $orderby = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
public function init() {
$this->topnum = false;
$this->pag_code = false;
$this->orderby = ' ORDER BY bpi.PAG_SN DESC ';
}
public function search($pag_code, $topnum = false) {
$this->init();
$this->topnum = empty($topnum) ? false : $topnum;
$this->pag_code = ' AND bpi.PAG_Code = ' . $this->HT->escape($pag_code);
return $this->get_list();
}
public function get_list() {
$this->topnum ? $sql = "SELECT TOP " . $this->topnum : $sql = "SELECT ";
$sql .= "
bpi.PAG_SN
,bpi.PAG_CII_SN
,bpi.PAG_Code
,bpi.PAG_NeedTime
,bpi2.PAG2_Name
,bpi2.PAG2_Title
FROM BIZ_PackageInfo bpi
INNER JOIN BIZ_PackageInfo2 bpi2
ON bpi2.PAG2_PAG_SN = bpi.PAG_SN
WHERE 1 = 1
AND (bpi.DeleteFlag IS NULL OR bpi.DeleteFlag=0)
AND (bpi.PAG_DEI_SN=? OR bpi.PAG_DEI_SN=26)
-- AND bpi.PAG_NeedPublish = 1
AND bpi2.PAG2_LGC = ?
";
$this->pag_code ? $sql.=$this->pag_code : false;
$this->orderby ? $sql.=$this->orderby : false;
$query = $this->HT->query($sql,array(CONST_SITE_DEPARTMENT,CONST_SITE_LGC));
//print_r($this->HT->queries);
if ($this->topnum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

@ -0,0 +1,82 @@
<?php
class BIZ_PackagePrice_model extends CI_Model {
var $topnum = false; //返回记录数
var $pag_code = false; //线路代号
var $person_size = false; //人等
var $price_date = false; //查询价格日期区间
var $orderby = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
public function init() {
$this->topnum = false;
$this->pag_code = false;
$this->person_size = false;
$this->price_date = false;
$this->orderby = ' ORDER BY bpp.PKP_PriceGrade ASC,bpp.PKP_AdultPrice DESC ';
}
public function search($pag_code, $topnum = false, $person_size = false, $price_date = false) {
$this->init();
$this->pag_code = $pag_code;
$this->topnum = empty($topnum) ? false : $topnum;
$this->person_size = empty($person_size) ? false : $this->person_size = " AND $person_size BETWEEN bpp.PKP_PersonStart AND bpp.PKP_PersonStop ";
$this->price_date = empty($price_date) ? false : " AND '$price_date 00:00:00' BETWEEN bpp.PKP_ValidDate AND bpp.PKP_InvalidDate ";
return $this->get_list();
}
public function get_list() {
$this->topnum ? $sql = "SELECT TOP " . $this->topnum : $sql = "SELECT ";
$sql .= "
bpi.PAG_SN
,bpi.PAG_Code
,bpp.PKP_SN
,bpp.PKP_PAG_SN
,bpp.PKP_AdultPrice
,bpp.PKP_ChildPrice
,bpp.PKP_InfantPrice
,bpp.PKP_AdultNetPrice
,bpp.PKP_ChildNetPrice
,bpp.PKP_InfantNetPrice
,bpp.PKP_ValidDate
,bpp.PKP_InvalidDate
,bpp.PKP_PriceGrade
,bpp.PKP_PersonStart
,bpp.PKP_PersonStop
,bpp.PKP_AdultCost
,bpp.PKP_ChildCost
,bpp.PKP_BabyCost
FROM BIZ_PackagePrice bpp
INNER JOIN BIZ_PackageInfo bpi
ON bpi.PAG_SN = bpp.PKP_PAG_SN
WHERE 1 = 1
AND (bpi.DeleteFlag IS NULL OR bpi.DeleteFlag=0)
AND bpi.PAG_Code = ?
AND (bpi.PAG_DEI_SN = ? OR bpi.PAG_DEI_SN = 26 )
";
$this->person_size ? $sql.=$this->person_size : false;
$this->price_date ? $sql.=$this->price_date : false;
$this->orderby ? $sql.=$this->orderby : false;
$query = $this->HT->query($sql, array($this->pag_code,CONST_SITE_DEPARTMENT));
//print_r($this->HT->queries);
if ($this->topnum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

@ -0,0 +1,77 @@
<?php
class Price_model extends CI_Model {
var $topnum = false; //返回记录数
var $cli_no = false; //线路代号
var $person_size = false; //人等
var $cli_grade = false; //(标准7001、豪华7002、经济7003
var $clp_pricetype = false; //价格类型 1旺季2淡季
var $price_date = false; //查询价格日期区间
var $orderby = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
public function init() {
$this->topnum = false;
$this->cli_no = false;
$this->person_size = false;
$this->cli_grade = false;
$this->clp_pricetype = false;
$this->price_date = false;
$this->orderby = ' ORDER BY cli.CLI_Grade ASC, clp.CLP_PriceStartDate ASC,clp.CLP_PriceType DESC ';
}
public function search($cli_no, $topnum = false, $cli_grade = false, $clp_pricetype = false, $price_date = false) {
$this->init();
$this->topnum = empty($topnum) ? false : $topnum;
$this->cli_no = ' AND cli.CLI_NO = ' . $this->HT->escape($cli_no);
$this->cli_grade = empty($cli_grade) ? false : ' AND cli.CLI_Grade = ' . $this->HT->escape($cli_grade);
$this->clp_pricetype = empty($clp_pricetype) ? false : ' AND clp.CLP_PriceType = ' . $this->HT->escape($clp_pricetype);
$this->price_date = empty($price_date) ? false : " AND '$price_date 00:00:00' BETWEEN clp.CLP_PriceStartDate AND clp.CLP_PriceEndDate ";
return $this->get_list();
}
public function get_list() {
$this->topnum ? $sql = "SELECT TOP " . $this->topnum : $sql = "SELECT ";
$sql .= "
cli.CLI_SN
,cli.CLI_NO
,clp.CLP_SN
,clp.CLP_OneAdultPriceRMB
,clp.CLP_TwoToFiveAdultPriceRMB
,clp.CLP_SixToNineAdultPriceRMB
,clp.CLP_OverTenAdultPriceRMB
,clp.CLP_PriceType
,cli.CLI_Grade
,clp.CLP_PriceStartDate
,clp.CLP_PriceEndDate
FROM CustomerLinePrice clp
INNER JOIN CustomerLineInfo cli
ON cli.CLI_SN = clp.CLP_CLI_SN
WHERE 1 = 1
AND cli.CLI_State IN (1005003 ,1005004)
";
$this->cli_no ? $sql.=$this->cli_no : false;
$this->cli_grade ? $sql.=$this->cli_grade : false;
$this->clp_pricetype ? $sql.=$this->clp_pricetype : false;
$this->price_date ? $sql.=$this->price_date : false;
$this->orderby ? $sql.=$this->orderby : false;
$query = $this->HT->query($sql);
//print_r($this->HT->queries);
if ($this->topnum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

@ -0,0 +1,108 @@
<?php
class PrimeLinePrice_model extends CI_Model {
var $topnum = false; //返回记录数
var $cli_no = false; //线路代号
var $person_size = false; //人等
var $cli_grade = 7001; //(标准7001、豪华7002、经济7003
var $price_date = false; //查询价格日期区间
var $orderby = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
public function init() {
$this->topnum = false;
$this->cli_no = false;
$this->person_size = false;
$this->cli_grade = false;
$this->price_date = false;
$this->orderby = ' ORDER BY plp.PLP_Level ASC,plp.PLP_IsWeekPrice DESC,plp.PLP_AdultUnitPrice DESC ';
}
public function search($cli_no, $topnum = false, $cli_grade = false, $person_size = false, $price_date = false) {
$this->init();
$this->cli_no = $cli_no;
$this->topnum = empty($topnum) ? false : $topnum;
$this->cli_grade = empty($cli_grade) ? false : $this->cli_grade = ' AND cli.CLI_Grade = ' . $this->HT->escape($cli_grade);
$this->person_size = empty($person_size) ? false : $this->person_size = " AND $person_size BETWEEN plp.PLP_PersonGradeDown AND plp.PLP_PersonGradeUp ";
if (!empty($price_date)) {
$this->price_date = " AND '$price_date 00:00:00' BETWEEN plp.PLP_StartDate AND plp.PLP_EndDate ";
$week_day = (int) date('w', strtotime($price_date)); //获取当前时间的星期号,用于判断周末价
$this->price_date .="
AND (
(plp.PLP_IsWeekPrice=1 AND plp.PLP_WeekDefine LIKE '%$week_day%')
OR (plp.PLP_IsWeekPrice=0)
)
";
}
return $this->get_list();
}
public function get_list() {
$this->topnum ? $sql = "SELECT TOP " . $this->topnum : $sql = "SELECT ";
$sql .= "
cli.CLI_SN
,cli.CLI_NO
,cli.CLI_Grade
,plp.PLP_SN
,plp.PLP_CLI_SN
,plp.PLP_Season
,plp.PLP_Area
,plp.PLP_StartDate
,plp.PLP_EndDate
,plp.PLP_PersonGradeDown
,plp.PLP_PersonGradeUp
,plp.PLP_AdultUnitCost
,plp.PLP_AdultUnitPrice
,plp.PLP_RoomDiffPrice
,plp.PLP_ChildRate
,plp.PLP_BabyRate
,plp.PLP_ChildUnitPrice
,plp.PLP_BabyUnitPrice
,plp.PLP_Level
,plp.PLP_IsWeekPrice
,plp.PLP_WeekDefine
,plp.PLP_PriceDate
,plp.PLP_PersonNum
,plp.PLP_VEI_SN
,plp.PLP_Year
,plp.PLP_VPPI_SN
,plp.PLP_VPPD_SN
,plp.PLP_Creator
,plp.PLP_CreateDate
,plp.PLP_LastEditor
,plp.PLP_LastEditDate
FROM PrimeLinePrice plp
INNER JOIN CustomerLineInfo cli
ON cli.CLI_SN = plp.PLP_CLI_SN
WHERE 1 = 1
AND cli.CLI_DEI_SN=?
AND plp.PLP_Year IS NOT NULL
AND cli.CLI_NO = ?
AND cli.CLI_State IN (1005003 ,1005004)
";
$this->person_size ? $sql.=$this->person_size : false;
$this->price_date ? $sql.=$this->price_date : false;
$this->cli_grade ? $sql.=$this->cli_grade : false;
$this->orderby ? $sql.=$this->orderby : false;
$query = $this->HT->query($sql, array(CONST_SITE_DEPARTMENT,$this->cli_no));
//print_r($this->HT->queries);
if ($this->topnum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

@ -0,0 +1,71 @@
<?php
class CustomerLineInfo_model extends CI_Model {
var $topnum = false; //返回记录数
var $cli_no = false; //线路代号
var $cli_grade = false; //(标准7001、豪华7002、经济7003
var $orderby = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
public function init() {
$this->topnum = false;
$this->cli_no = false;
$this->cli_grade = false;
$this->orderby = ' ORDER BY cli.CLI_Grade ASC ';
}
public function search($cli_no, $topnum = false, $cli_grade = false) {
$this->init();
$this->topnum = empty($topnum) ? false : $topnum;
$this->cli_no = ' AND cli.CLI_NO = ' . $this->HT->escape($cli_no);
$this->cli_grade = empty($cli_grade) ? false : ' AND cli.CLI_Grade = ' . $this->HT->escape($cli_grade);
return $this->get_list();
}
public function get_list() {
$this->topnum ? $sql = "SELECT TOP " . $this->topnum : $sql = "SELECT ";
$sql .= "
cli.CLI_SN
,cli.CLI_NO
,cli.CLI_Days
,cli.CLI_LineType
,cli.CLI_Grade
,cli.CLI_LineClass
,cli2.CLI2_Name
,cli2.CLI2_Introduction
,cli2.CLI2_Memo
,cli2.CLI2_PassCity
,cli2.CLI2_DepartureCity
,cli2.CLI2_EntranceCity
FROM CustomerLineInfo cli
INNER JOIN CustomerLineInfo2 cli2
ON cli2.CLI2_CLI_SN = cli.CLI_SN
WHERE 1=1
AND cli.CLI_State IN (1005003 ,1005004)
AND cli.CLI_DEI_SN=?
AND cli2.CLI2_LGC = ?
";
$this->cli_no ? $sql.=$this->cli_no : false;
$this->cli_grade ? $sql.=$this->cli_grade : false;
$this->orderby ? $sql.=$this->orderby : false;
$query = $this->HT->query($sql,array(CONST_SITE_DEPARTMENT,CONST_SITE_LGC));
//print_r($this->HT->queries);
if ($this->topnum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,92 @@
<?php
class InfoMetas_model extends CI_Model
{
function __construct()
{
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
function add($im_ic_id, $im_key, $im_value)
{
$sql = "INSERT INTO infoMetas \n"
. " ( \n"
. " im_ic_id, im_key, im_value \n"
. " ) \n"
. "VALUES \n"
. " ( \n"
. " ?, ?, N? \n"
. " )";
return $this->HT->query($sql, array($im_ic_id, $im_key, $im_value));
}
function get($im_ic_id, $im_key)
{
$sql = "SELECT im.im_value \n"
. "FROM infoMetas im \n"
. "WHERE im.im_ic_id = ? \n"
. " AND im.im_key = ?";
$query = $this->HT->query($sql, array($im_ic_id, $im_key));
if ($query->num_rows() > 0)
{
return $query->row()->im_value;
}
else
{
return false;
}
}
function detail($im_ic_id, $im_key)
{
$sql = "SELECT im.im_value \n"
. "FROM infoMetas im \n"
. "WHERE im.im_ic_id = ? \n"
. " AND im.im_key = ? ORDER BY im.im_id asc";
$query = $this->HT->query($sql, array($im_ic_id, $im_key));
return $query->result();
}
//获取未收录的信息
public function get_unembody_content($datetime,$top_num=1){
$sql=" SELECT TOP $top_num
im_ic_id,
im_value,
ic_url,
ic_sitecode,
log_ht_usercode AS ic_author
FROM infoMetas
INNER JOIN infoStructures ON is_ic_id=im_ic_id
INNER JOIN infoContents ON ic_id=im_ic_id
INNER JOIN infologs ON log_res_id=is_id
WHERE im_key = 'meta_embody'
AND convert(varchar(500),im_value) != '1'
AND convert(varchar(500),im_value)<N?
ORDER BY im_id DESC";
$query=$this->HT->query($sql,array($datetime));
return $query->result();
}
function update($im_ic_id, $im_key, $im_value)
{
$sql = "UPDATE infoMetas \n"
. "SET im_value = N? \n"
. "WHERE im_ic_id = ? \n"
. " AND im_key = ?";
return $this->HT->query($sql, array($im_value, $im_ic_id, $im_key));
}
function delete($im_ic_id, $im_key)
{
$sql = "DELETE \n"
. "FROM infoMetas \n"
. "WHERE im_ic_id = ? \n"
. " AND im_key = ?";
return $this->HT->query($sql, array($im_ic_id, $im_key));
}
}

@ -0,0 +1,162 @@
<?php
class Information_model extends CI_Model {
var $top_num = false;
var $order_by = false;
var $search_title = false;
var $search_url = false;
var $path = false;
var $level = false;
var $is_parent_id = false;
var $is_id_array = false;
var $ic_url_is_id = false;
var $ic_type = false;
var $ic_show_bread_crumbs = false;
var $ic_ht_area_id = false;
var $ic_ht_area_type = false;
var $cols = false;
var $ic_template = false;
var $sql = false;
function __construct() {
parent::__construct();
$this->HT = $this->load->database('HT', TRUE);
}
function init() {
$this->top_num = false;
$this->order_by = empty($this->order_by) ? " ORDER BY ic_datetime DESC " : $this->order_by;
$this->search_title = false;
$this->search_url = false;
$this->path = false;
$this->level = false;
$this->is_parent_id = false;
$this->is_id_array = false;
$this->ic_url_is_id = false;
$this->ic_show_bread_crumbs = false;
$this->cols = false;
$this->ic_template = false;
$this->sql = false;
}
//可以传递url或者id如果有id则以ID进行查询
function get_detail($ic_url_is_id) {
$this->init();
$this->top_num = 1;
$this->order_by = ' ORDER BY LEN(CAST(ic.ic_content AS NVARCHAR(MAX))) DESC,LEN(CAST(ic.ic_summary AS NVARCHAR(MAX))) DESC,is1.is_id ASC ';
if (is_numeric($ic_url_is_id)) {
$this->ic_url_is_id = " AND is1.is_id= " . $this->HT->escape($ic_url_is_id);
} else {
$this->ic_url_is_id = " AND ic.ic_url = N" . $this->HT->escape($ic_url_is_id);
}
return $this->get_list();
}
/*传递父级ID获取同级目录
*@parameter $is_parent_id int 传入的父级id
*@parameter $num int 要获取的数目,默认五条
*@author CSK
*@date 2016-10-27
*/
function get_same_level($is_parent_id,$num=5){
$this->init();
$this->top_num=$num;
$this->cols="is1.is_sort,ic.ic_url,ic_url_title";
$this->ic_url_is_id="AND is1.is_parent_id=".$this->HT->escape($is_parent_id);
$this->order_by="ORDER BY is_sort ASC";
return $this->get_list();
}
/*传递一组ID获取信息
*@parameter $is_id string 传入的id字符串1,2,3
*@author CSK
*@date 2016-10-27
*/
function get_some_detail($is_id){
$this->init();
$this->cols="ic.ic_url,ic_url_title,ic_photo";
$this->ic_url_is_id="AND ic.ic_id in (".$is_id.")";
return $this->get_list();
}
function get_list() {
$this->top_num ? $sql = "SELECT TOP " . $this->top_num : $sql = "SELECT ";
if (!empty($this->cols)) {
$sql .= $this->cols;
} else {
$sql .= " is1.is_id, \n"
. " is1.is_parent_id, \n"
. " is1.is_path, \n"
. " is1.is_level, \n"
. " is1.is_sort, \n"
. " is1.is_sitecode, \n"
. " is1.is_datetime, \n"
. " is1.is_ic_id, \n"
. " ic.ic_id, \n"
. " ic.ic_url, \n"
. " ic.ic_url_title, \n"
. " ic.ic_type, \n"
. " ic.ic_title, \n"
. " ic.ic_content, \n"
. " ic.ic_summary, \n"
. " ic.ic_seo_title, \n"
. " ic.ic_seo_description, \n"
. " ic.ic_seo_keywords, \n"
. " ic.ic_show_bread_crumbs, \n"
. " ic.ic_status, \n"
. " ic.ic_template, \n"
. " ic.ic_photo, \n"
. " ic.ic_photo_width, \n"
. " ic.ic_photo_height, \n"
. " ic.ic_sitecode, \n"
. " ic.ic_recommend_tours, \n"
. " ic.ic_recommend_packages, \n"
. " ic.ic_datetime, \n"
. " ic.ic_ht_area_id, \n"
. " ic.ic_ht_area_type, \n"
. " ic.ic_ht_product_id, \n"
. " ic.ic_ht_product_type, \n"
. " ic.ic_author, \n"
. " o2.OPI2_FirstName, \n"
. " o2.OPI2_LastName \n";
}
$sql.= " FROM infoStructures is1 \n"
. " INNER JOIN infoContents ic ON ic.ic_id = is1.is_ic_id \n"
. " AND ic.ic_sitecode = is1.is_sitecode \n"
. " LEFT JOIN OperatorInfo o1 ON o1.OPI_Code = ic.ic_author \n"
. " LEFT JOIN OperatorInfo2 o2 ON o1.OPI_SN = o2.OPI2_OPI_SN AND o2.OPI2_LGC = ? \n"
. "WHERE ic.ic_status = 1 \n"
. "AND is1.is_sitecode = ? ";
$this->search_title ? $sql.=$this->search_title : false;
$this->search_url ? $sql.=$this->search_url : false;
$this->path ? $sql.=$this->path : false;
$this->level ? $sql.=$this->level : false;
$this->ic_type ? $sql.=$this->ic_type : false;
$this->ic_ht_area_id ? $sql.=$this->ic_ht_area_id : false;
$this->ic_ht_area_type ? $sql.=$this->ic_ht_area_type : false;
$this->is_parent_id ? $sql.=$this->is_parent_id : false;
$this->ic_show_bread_crumbs ? $sql.=$this->ic_show_bread_crumbs : false;
$this->is_id_array ? $sql.=$this->is_id_array : false;
$this->ic_url_is_id ? $sql.=$this->ic_url_is_id : false;
$this->ic_template ? $sql.=$this->ic_template : false;
$this->order_by ? $sql.=$this->order_by : false;
$query = $this->HT->query($sql, array($this->config->item('Site_LGC'), $this->config->item('Site_Code')));
//$this->sql = $this->HT->queries;
if ($this->top_num === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1,66 @@
<link href="/min/?f=/css/inquiry-form.css" rel="stylesheet">
<form id="form_tour_detail" name="form_tour_detail" action="<?php echo site_url('orders/asia_tour'); ?>" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: <?php echo $pd_tour->CLI_Days; ?> days
</li>
<li>
Tour Code:<?php echo $pd_tour->CLI_NO; ?>
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">#<?php echo $pd_tour->CLI_NO; ?>#</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Date of Arrival:</span>
<input value="" name="Starting_Date" id="Starting_Date" class="arrivalDate datepicker" style="background-color:#FFF" placeholder="mm/dd/yy" />
</div>
<div class="traveller">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Travelers </span>
</div>
<div class="row">
<div class="col-md-7 col-sm-7 col-xs-7">
<div class="traveller">
<select id="adultsNumber" name="adultsNumber" >
<?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select>
<span class="title"> age 18+ </span>
</div>
</div>
<div class="col-md-9 col-sm-9 col-xs-9">
<div class="traveller">
<select id="ChildrenNumber" name="ChildrenNumber"><option value="0">0</option><?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select> <span class="title"> age 12-17 </span>
</div>
</div>
<div class="col-md-7 col-sm-7 col-xs-7">
<div class="traveller">
<select id="BabiesNumber" name="BabiesNumber"><option value="0">0</option><?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select> <span class="title"> age &lt;12 </span>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Next" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="<?php echo $pd_tour->CLI_NO; ?>" type="hidden" />
<input name="cli_sn" id="cli_sn" value="<?php echo $pd_tour->CLI_SN; ?>" type="hidden" />
<input name="cli_days" id="cli_days" value="<?php echo $pd_tour->CLI_Days; ?>" type="hidden" />
<input name="destinations" id="destinations" value="<?php echo $pd_tour->CLI2_PassCity; ?>" type="hidden" />
</form>

@ -0,0 +1,22 @@
<div class="footerBtn" id="footerBtn" >
<form action="<?php echo site_url('orders/asia_tour'); ?>" method="post">
<input name="cli_no" id="cli_no" value="<?php echo $pd_tour->CLI_NO; ?>" type="hidden" />
<input name="cli_sn" id="cli_sn" value="<?php echo $pd_tour->CLI_SN; ?>" type="hidden" />
<input name="cli_days" id="cli_days" value="<?php echo $pd_tour->CLI_Days; ?>" type="hidden" />
<input name="destinations" id="destinations" value="<?php echo $pd_tour->CLI2_PassCity; ?>" type="hidden" />
<span class="" id="footerBtn_sub">Inquiry Now</span>
</form>
</div>
<script>
$(function(){
if($(window).width()<768){
$("#form_tour_detail").css("display","none");
$("#footer").css("display","none");
}
})
$("#footerBtn_sub").click(function(){
$("#footerBtn>form").submit();
});
</script>

@ -0,0 +1,5 @@
<ul class="ArticleList">
<?php foreach ($same_level as $key => $v):?>
<a href="<?php echo $v->ic_url;?>"><li class="<?php echo $key===0?"ListTop":"";?>"><?php echo $v->ic_url_title;?></li></a>
<?php endforeach;?>
</ul>

@ -0,0 +1,3 @@
<div class="crumbNav">
<a href="/">Home</a> <a href="<?php echo $parent->ic_url;?>"><?php echo $parent->ic_url_title;?></a><?php echo $oneself->ic_url_title;?>
</div>

@ -0,0 +1,7 @@
<ul class="ArticleList">
<a href="<?php echo $parent->ic_url;?>"><li class="ListTop"><?php echo $parent->ic_url_title;?></li></a>
<?php foreach ($same_level as $key=>$v){?>
<a href="<?php echo $v->ic_url;?>"><li class="<?php echo $key===0?"":"";?>"><?php echo $v->ic_url_title;?></li></a>
<?php }?>
</ul>

@ -0,0 +1,10 @@
<?php if(!empty($data)){?>
<div class="YouMayLike">
<h2>You May Like</h2>
<?php foreach ($data as $key => $value) {?>
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
<a href="<?php echo $value->ic_url;?>"><img src="<?php echo $value->ic_photo;?>" /><strong><?php echo $value->ic_url_title;?></strong></a>
</div>
<?php }?>
</div>
<?php }?>

@ -0,0 +1,33 @@
<link href="/min/?f=/css/missing.css" rel="stylesheet">
<div id="inquiryForm">
<div class="container">
<div class="row">
<div class="col-md-1 col-sm-1 hidden-xs"></div>
<div class="col-md-9 col-sm-9 hidden-xs"><img src="/pic/bg-peggie.png" class="img-responsive"></div>
<div class="col-md-14 col-sm-14 col-xs-24">
<p><img src="/pic/missing-text.png" class="img-responsive"></p>
<p>Now you may go back to our <a href="/">homepage</a>, or message us for whatever you are looking for. </p>
<form action="/orders/contactus_save" method="post" id="form_contact_us" name="form_contact_us">
<div class="contactUs">
<span class="introText">Tell us what you are looking for</span>
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24">
<textarea id="comments" name="comments" placeholder="Tell us about your idea"></textarea>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-24">
<input type="text" id="realname" name="realname" placeholder="Full Name">
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<input type="text" id="email" name="email" placeholder="Email">
</div>
</div>
<input type="button" value="Send my message" onclick="submitForm('form_contact_us');">
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>

@ -0,0 +1,23 @@
<div id="footer">
<div class="container">
<div class="col-md-14 col-sm-14 col-xs-24 copyright"> <span class="hidden-xs"><a href="/privacy.htm">Privacy policy</a> <a href="/terms-of-use.htm">Terms of use</a> <a href="/contact-us.htm">Contact us</a> </span> <span>Copyright &copy; 2016 Asia Highlights. </span> </div>
<div class="col-md-10 col-sm-10 hidden-xs socialMedia"> <span class="followUs">Follow us on</span> <span class="socialLink"><a class="fb fa fa-facebook" title="Follow us on Facebook" rel="nofollow" href="https://www.facebook.com/AsiaHighlights"></a><a class="tw fa fa-twitter" title="Share us on Twitter" rel="nofollow" href="https://twitter.com/Asiahighlights"></a></span> </div>
</div>
</div>
<div class="footerMember hidden-xs"><img src="/pic/members.png"></div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75142970-1', 'auto',{'siteSpeedSampleRate':100});
ga('send', 'pageview');
</script>
<script type="text/javascript">var rumMOKey='45e53ca47f1b4e96975647ac0e5c0377';(function(){if(window.performance && window.performance.timing && window.performance.navigation) {var site24x7_rum_beacon=document.createElement('script');site24x7_rum_beacon.async=true;site24x7_rum_beacon.setAttribute('src','//static.site24x7rum.com/beacon/site24x7rum-min.js?appKey='+rumMOKey);document.getElementsByTagName('head')[0].appendChild(site24x7_rum_beacon);}})(window)</script>
</body>
</html>

@ -0,0 +1,150 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo empty($seo_title) ? 'Vietnam Travel Agency, tour with Asia Highlights-Since 1959' : $seo_title; ?></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="description" content="<?php echo empty($seo_description) ? false : $seo_description; ?>">
<meta name="keywords" content="<?php echo empty($seo_keywords) ? false : $seo_keywords; ?>">
<?php if (!empty($seo_url)) { ?>
<link rel="canonical" href="https://www.asiahighlights.com<?php echo $seo_url; ?>">
<?php } ?>
<link href="/min/?f=/css/global.min.css,/js/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css,/css/basic.css" rel="stylesheet">
<?php if (!empty($meta_addon_css)) { ?>
<link href="/min/?f=<?php echo $meta_addon_css; ?>" rel="stylesheet">
<?php } ?>
<script src="/min/?f=/js/jquery-1.8.2.min.js,/js/bootstrap.min.js,/js/bootstrap-datepicker/bootstrap-datepicker.min.js,/js/typeahead.bundle.js,/js/basic.js,/js/jquery.form.min.js,/js/poshytip/jquery.poshytip.min.js,/js/jquery.sticky-kit.min.js"></script>
<?php echo!empty($meta_addon_js) ? '<script language="JavaScript" src="/min/?f='.$meta_addon_js.'" type="text/javascript"></script>' : false; ?>
<link rel="shortcut icon" href="/favicon.ico" />
<script>
$(function() {
$("#form_tour_detail").stick_in_parent({parent: "#mcontent",bottoming:false});
// $("#footerBtn").stick_in_parent({parent: "body",stickyClass:"ff"});
if(IsPC()){
$(".dropdown-menu-ah-csk").mouseover(function() {
$(this).addClass('open');
}).mouseout(function() {
$(".dropdown-menu-ah-csk").removeClass('open');
});
}
});
</script>
</head>
<body>
<div id="header">
<div class="container">
<div class="row navbar-inverse" role="1navigation">
<div class="col-md-6 col-sm-6 col-xs-10"><a href="/"><img src="/pic/logo-ah.png" class="img-responsive" alt="Asia Highlights"></a></div>
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
<div class="collapse navbar-collapse csk-overflow-y">
<div class="col-md-18 col-sm-18" id="mainNav">
<div class="contactInfo hidden-xs"> <a href="/contact-us.htm">Contact us</a> <span class="phoneNumber">USA/CA: 800-2682918</span></div>
<div class="menu">
<?php
$url = get_origin_url();
$active_home = '';
$active_guide = '';
$active_tours = '';
$active_mytrip = '';
$active_aboutus = '';
switch ($url) {
case '/':
$active_home = 'active';
break;
case '/guide/':
$active_guide = 'active';
break;
case '/tours/':
$active_tours = 'active';
break;
case '/create-my-trip.htm':
$active_mytrip = 'active';
break;
case '/about-us.htm':
$active_aboutus = 'active';
break;
}
?>
<a href="/" class="<?php echo $active_home; ?>">Home</a>
<!-- <a href="/vietnam/" class="<?php echo $active_guide; ?>">Plan Your Trip</a> -->
<li class="dropdown dropdown-menu-ah-csk" id="dropdown-menu-ah">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Plan Your Trip<span class="caret"></span></a>
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
<li>
<em><a href="/myanmar/">Myanmar</a></em>
<a href="/myanmar/" class="hidden-xs">
<img src="/image/myanmar-monks.jpg" alt="myanmar" class="img-rounded">
</a>
</li>
<li>
<em><a href="/cambodia/">Cambodia</a></em>
<a href="/cambodia/" class="hidden-xs">
<img src="/image/cambodia.jpg" alt="cambodia" class="img-rounded">
</a>
</li>
<li>
<em><a href="/vietnam/">Vietnam</a></em>
<a href="/vietnam/" class="hidden-xs">
<img src="/image/vietnam.jpg" alt="vietnam" class="img-rounded">
</a>
</li>
<li>
<em><a href="/laos/">Laos</a></em>
<a href="/laos/" class="hidden-xs">
<img src="/image/laos.jpg" alt="Laos" class="img-rounded">
</a>
</li>
<li>
<em><a href="/cambodia/angkor-wat-travel-guide.htm">Angkor Wat</a></em>
<a href="/cambodia/angkor-wat-travel-guide.htm" class="hidden-xs">
<img src="/image/angkor-wat.jpg" alt="Angkor Wat" class="img-rounded">
</a>
</li>
<li>
<em><a href="/southeast-asia/ports-and-shore-excursions.htm">Shore Excursions</a></em>
<a href="/southeast-asia/ports-and-shore-excursions.htm" class="hidden-xs">
<img src="/image/bangkok-excursion.jpg" alt="Bangkok Excursion" class="img-rounded">
</a>
</li>
</ul>
</li>
<!-- <a href="/tours/" class="<?php echo $active_tours; ?>">Tours</a> -->
<li class="dropdown dropdown-menu-ah-csk">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Tours<span class="caret"></span></a>
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
<li>
<em><a href="/tours/year.htm">SE Asia Tours 2017</a></em>
<a href="/tours/year.htm" class="hidden-xs">
<img src="/image/bagan-pagodas.jpg" alt="Bagan Pagodas" class="img-rounded">
</a>
</li>
<li>
<em><a href="/tours/">Top Tours</a></em>
<a href="/tours/" class="hidden-xs">
<img src="/image/viet-local.jpg" alt="Local Vietnamese" class="img-rounded">
</a>
</li>
<li>
<em><a href="/southeast-asia/cruise-shore-excursions.htm">Cruise Excusions</a></em>
<a href="/southeast-asia/cruise-shore-excursions.htm" class="hidden-xs">
<img src="/image/cruise.jpg" alt="Southeast Asia Cruise" class="img-rounded">
</a>
</li>
</ul>
</li>
<a href="/create-my-trip.htm" class="<?php echo $active_mytrip; ?>">Create My Trip</a>
<a href="/about-us.htm" class="<?php echo $active_aboutus; ?>">About Us</a></div>
</div>
</div>
</div>
</div>
</div>

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

@ -0,0 +1 @@
<?php echo str_replace('textarea##','textarea',$detail->ic_content); ?>

@ -0,0 +1,52 @@
<form id="form_tour_detail" name="form_tour_detail" action="<?php echo site_url('orders/asia_tour'); ?>" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: <?php echo $pd_tour->CLI_Days; ?> days</li>
<li>
Tour Code:<?php echo $pd_tour->CLI_NO; ?>
</li>
<li>
Tour Type: Private Tour</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">#<?php echo $pd_tour->CLI_NO; ?>#</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" placeholder="mm/dd/yyyy" />
</div>
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24">
<span class="title">Traveler:</span>
</div>
<div class="col-md-8 col-sm-8 col-xs-12">
<div class="traveller">
<select id="adultenum" name="adultenum"><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">6+</option> </select>
<span class="ageInfo"> Age(18+):</span>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-12">
<div class="traveller">
<select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">6+</option> </select>
<span class="ageInfo"> Age(12-17):</span>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-12">
<div class="traveller">
<select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">6+</option> </select>
<span class="ageInfo"> Age(< 12):</span>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="<?php echo $pd_tour->CLI_NO; ?>" type="hidden" />
<input name="cli_days" id="cli_days" value="<?php echo $pd_tour->CLI_Days; ?>" type="hidden" />
<input name="destinations" id="destinations" value="<?php echo $pd_tour->CLI2_PassCity; ?>" type="hidden" />
</form>

File diff suppressed because one or more lines are too long

@ -0,0 +1,327 @@
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="robots" content="noindex,nofollow" />
<title>Customers Email Review - China Highlights</title>
</head>
<style>
table td ul {
margin-left:5px;
padding-left:5px;
}
table td ul li {
list-style-type: none;
padding-left:0px;
line-height: 18px;
margin-bottom:5px;
}
</style>
<body style="color: #333; margin: 20px 0px; padding: 0px; font-family: Verdana, Geneva, sans-serif; font-size: 12px;">
<table width="668" cellpadding="0" cellspacing="0" align="center" style="background-color:#f1f1f1; margin: 10px auto; border-radius:4px;">
<tr>
<td colspan="6" align="right" valign="middle" style="font-size:16px; background-color:#fff; padding:0 0 10px; color:#000;" ><img src="https://www.asiahighlights.com/pic/mailtelphone.jpg" width="22" height="16" alt="Telephone" /> +86-773-2806225</td>
</tr>
<tr>
<td width="20"></td>
<td width="106" style="padding:20px 0"><a href="https://www.asiahighlights.com"><img src="https://www.asiahighlights.com/pic/logo-104.png" alt="Asia Highlights" align="middle"/></a></td>
<td width="58" >&nbsp;</td>
<td width="406" style="font-family:Georgia; font-size:45px; color:#010101;"><img src="https://www.asiahighlights.com/pic/slogan.png"></td>
<td width="58">&nbsp;</td>
<td width="15">&nbsp;</td>
</tr>
<tr>
<td></td>
<td colspan="4" width="628"><img src="https://www.asiahighlights.com/image/auto-email-ads.jpg"></td>
<td></td>
</tr>
<tr>
<td></td>
<td colspan="4" style=" font-family:Verdana; font-size:14px; padding:10px 0 10px 0px;text-align: justify; color:#8b8b8b;">You're receiving this email because you submitted an inquiry on asiahighlights.com.</td>
<td></td>
</tr>
<tr>
<td></td>
<?php $realname = $this->input->post('realname'); ?>
<td colspan="4" style="font-family:Verdana;line-height:25px;text-align: justify; font-size:12px; color:#000; padding-bottom:10px;"><p>Dear <?php echo!empty($realname) ? $realname : false; ?>,</p>
<p>Thank you for choosing Asia Highlights. Your inquiry has been submitted to Asia Highlights. One of our
travel advisors will respond within 24 hours. If you have not received a reply within 24 horus, please check your &quot;bulk mail&quot; or &quot;junk mail&quot; folders and then contact our Customer Service
Manager at &nbsp;&nbsp;<a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a> so that we can investigate immediately. </p>
<p>Below is a copy of your inquiry. Let us know if it is incorrect or you want to make some changes:</p></td>
<td></td>
</tr>
<tr>
<td></td>
<td colspan="4" style="font-family:Verdana; font-size:12px; color:#2b6cbd; padding:20px 0 5px 0;">Your Contact Details:</td>
<td></td>
</tr>
<tr>
<th colspan="6" ></th>
</tr>
<?php if (!empty($realname)) { ?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style=" line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0;font-size:12px;">Full Name: <?php echo $realname; ?></td>
<td></td>
</tr>
<?php } ?>
<?php
$nationality = $this->input->post('nationality');
if (!empty($nationality)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style=" line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; font-size:12px;">Nationality: <?php echo $nationality; ?></td>
<td></td>
</tr>
<?php } ?>
<?php
$email = $this->input->post('email');
if (!empty($email)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px;font-size:12px;margin-bottom:5px; padding:3px 0 8px 0">E-mail Address: <?php echo $email; ?></td>
<td></td>
</tr>
<?php } ?>
<?php
$PhoneNo = $this->input->post('PhoneNo');
if (!empty($PhoneNo)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Phone Number: <?php echo $PhoneNo; ?></td>
<td></td>
</tr>
<?php } ?>
<tr>
<th></th>
<td colspan="4" style="font-family:Verdana; font-size:12px; color:#2b6cbd; padding:20px 0 5px 0;">Enquiry Details:</td>
<td></td>
</tr>
<!--201605041539-->
<?php
$adultenum = $this->input->post('adultenum');
empty($adultenum)?$adultenum=$this->input->post('adultsNumber'):false;
$childnum = $this->input->post('childnum');
empty($childnum)?$childnum=$this->input->post('ChildrenNumber'):false;
$babynum = $this->input->post('babynum');
empty($babynum)?$babynum=$this->input->post('BabiesNumber'):false;
if (!empty($adultenum)) {
?>
<tr>
<th></th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Number of Travelers:
<?php
echo $adultenum . ' adults ';
echo!empty($childnum) ? ' , ' . $childnum . ' child' : false;
echo!empty($babynum) ? ' , ' . $babynum . ' baby' : false;
?> </td>
<td></td>
</tr>
<?php } ?>
<?php
$cli_tourdays = $this->input->post('cli_tourdays');
if (!empty($cli_tourdays)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Tour length: <?php echo $cli_tourdays; ?> days </td>
<td></td>
</tr>
<?php } ?>
<?php
$starting_date = $this->input->post('starting_date');
empty($starting_date)?$starting_date=$this->input->post('Date_Start'):false;
if (!empty($starting_date)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Date of Arrival: <?php echo $starting_date; ?></td>
<td></td>
</tr>
<?php } ?>
<?php
$cli_days = $this->input->post('cli_days');
if (!empty($cli_days)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Length: </span><?php echo $cli_days; ?>
</td>
<td></td>
</tr>
<?php } ?>
<?php
$destinations = $this->input->post('destinations');
if (!empty($destinations)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Destinations: </span><?php echo $destinations; ?>
</td>
<td></td>
</tr>
<?php } ?>
<!--201605041539-->
<?php
$cli_no = $this->input->post('cli_no');
$cli_tourtitle = $this->input->post('cli_tourtitle');
if (!empty($cli_no)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Tour Code:
<?php
echo $cli_no;
echo!empty($cli_tourtitle) ? $cli_tourtitle : false;
?>
</td>
<td></td>
</tr>
<?php } ?>
<!--201605041600 2. Hotel Style hotel-->
<?php
$hotel = $this->input->post('hotel');
if (!empty($hotel)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Hotel Style: </span><?php echo $hotel; ?>
</td>
<td></td>
</tr>
<?php } ?>
<!--20160715 start city -->
<?php
$Starting_City = $this->input->post('Starting_City');
if (!empty($Starting_City)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Start City of the Tour: </span><?php echo $Starting_City; ?>
</td>
<td></td>
</tr>
<?php } ?>
<!--20160715 Ending_City -->
<?php
$Ending_City = $this->input->post('Ending_City');
if (!empty($Ending_City)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">End City of the Tour: </span><?php echo $Ending_City; ?>
</td>
<td></td>
</tr>
<?php } ?>
<?php
$guiding = $this->input->post('guiding');
if (!empty($guiding)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">Guide v Freetime: </span><?php echo $guiding; ?>
</td>
<td></td>
</tr>
<?php } ?>
<?php
$city = $this->input->post('city');
if (!empty($city)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">City: </span>
<?php foreach($city as $k=>$v){
if($k !== 0){?>,
<?php } echo $v; } ?>
</td>
<td></td>
</tr>
<?php } ?>
<?php
$seriousBooking = $this->input->post('seriousBooking');
if (!empty($seriousBooking)) {
?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">You Are : </span><?php echo $seriousBooking; ?>
</td>
<td></td>
</tr>
<?php } ?>
<!--201605041600-->
<?php
$additionalrequirements = $this->input->post('additionalrequirements');
empty($additionalrequirements)?$expectation=0:false;
empty($additionalrequirements)?$additionalrequirements=$this->input->post('comments'):false;
empty($additionalrequirements)?$additionalrequirements=$this->input->post('aquestion'):false;
$comments = $this->input->post('comments');
if (!empty($additionalrequirements)) {
?>
<tr>
<th></th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">
<?php if(empty($comments)){?>
Your Expectation:
<?php }?>
<?php echo $additionalrequirements; ?></td>
<td></td>
</tr>
<?php } ?>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:20px 0 8px 0; text-align: justify; font-size:12px; color:#2b6cbd">Got questions? Talk directly to Peggie Lyoo, our expert advisor: </span>
</td>
<td></td>
</tr>
<tr>
<th>&nbsp;</th>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 8px 0; text-align: justify; font-size:12px;">WhatsApp: +86 134 71263244</span>
</td>
<td></td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:20px 0 8px 0; text-align: justify; font-size:12px;">Kind regards,</td>
<td></td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="4" style="line-height: 18px; margin-bottom:5px; padding:3px 0 60px 0; text-align: justify; font-size:14px;">Asia Highlights Team</td>
<td></td>
</tr>
<tr>
<td colspan="6" style="font-size:12px; padding:20px 0 10px 0px;text-align: justify; color:#8b8b8b; background-color:#fff; line-height:18px;">Copyright &#169; 2016, Asia Highlights, All rights reserved.</td>
</tr>
</table>
</body>
</html>

@ -0,0 +1,204 @@
<link href="/min/?f=/css/inquiry-form.css,/css/tailor-make.css" rel="stylesheet">
<script language="javascript">
$(function () {
$("#flexible_date_yes").click(function () {
$('#choose_date_box').show();
});
$("#flexible_date_no").click(function () {
$('#choose_date_box').hide();
});
$("#show_arrowUp").mouseover(function () {
$('#arrowUp').show();
});
$("#show_arrowUp").mouseout(function () {
$('#arrowUp').hide();
});
})
</script>
<div id="inquiryForm">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-2 hidden-xs"></div>
<div class="col-md-3 col-sm-3 col-xs-6 pgHead"><img src="/image/peggie.png" class="img-responsive"></div>
<div class="col-md-19 col-sm-19 col-xs-18"> <span class="advisorInfo"> <span class="arrow"></span> I'm Peggie, my team and I are SE Asia travel experts! Just let us know your requirements
and my team will reply to you in a few hours, maximum 24 hours!</span>
</div>
<div class="clearfix"></div>
<div class="col-md-5 col-sm-5 hidden-xs"></div>
<div class="col-md-19 col-sm-19 col-xs-24">
<form id="form_inquiry" name="form_inquiry" action="<?php echo site_url('orders/asia_tour_save'); ?>" method="post" >
<div class="FormDetail">
<div class="row TourInfo">
<div class="col-md-7 col-sm-7 InquiryOn">You are inquiring on:</div>
<div class="col-md-17 col-sm-17 tourDetail">
<ul>
<li><span class="detailName">Tour Code:</span><?php echo $post_cli_no; ?></li>
<li><span class="detailName">Length:</span><?php echo $post_days; ?></li>
<li><span class="detailName">Destinations:</span><?php echo $post_destinations; ?></li>
</ul>
</div>
</div>
<div class="whoTravel">
<h2 class="Question">1. Travelers? <sup>*</sup></h2>
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType adults"> Adults (age 18+)
<select id="adultsNumber" name="adultsNumber">
<?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>"
<?php if($adultsNumber == $i){?>selected="selected"<?php }?>
><?php echo $i; ?></option>
<?php } ?>
<option value="6" <?php if($adultsNumber == 6){?>selected="selected"<?php }?> >6+</option>
</select>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType youth"> Youth (age 12-17)
<select id="ChildrenNumber" name="ChildrenNumber">
<?php for ($i = 0; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>"
<?php if($ChildrenNumber == $i){?>selected="selected"<?php }?>
><?php echo $i; ?></option>
<?php } ?>
<option value="6" <?php if($ChildrenNumber == 6){?>selected="selected"<?php }?> >6+</option>
</select>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType kids"> Children (&lt; age 12)
<select id="BabiesNumber" name="BabiesNumber">
<?php for ($i = 0; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>"
<?php if($BabiesNumber == $i){?>selected="selected"<?php }?>
><?php echo $i; ?></option>
<?php } ?>
<option value="6" <?php if($ChildrenNumber == 6){?>selected="selected"<?php }?> >6+</option>
</select>
</div>
</div>
</div>
</div>
<div class="formItem">
<div class="Question">2. Date of Arrival<sup>*</sup></div>
<div class="row">
<div class="col-md-10 col-sm-10">
<input type="text" autocomplete="off" placeholder="mm/dd/yyyy" value="<?php echo $post_Starting_Date; ?>" name="starting_date" id="starting_date" class="arrivalDate datepicker">
</div>
<div class="col-md-14 col-sm-14"><span class="dateFlexible">Are your dates flexible?</span> <br>
<input type="radio" name="flexible_date" id='flexible_date_yes_1' value="yes" class="hotel">
Yes
<input type="radio" name="flexible_date" id="flexible_date_no_1" value="no" class="hotel">
No </div>
</div>
<div id='choose_date_box' style="display:none;">
<div class="Flexible">Flexible to arrive or depart? Choose the date!</div>
<div class="row ChooseDate">
<div class="col-md-3 col-sm-3">Arrive:</div>
<div class="col-md-21 col-sm-21">
<input type="text" name="Arrive_date" id="Arrive_date" value="" class="flexibleDate datepicker">
</div>
</div>
<div class="row ChooseDate">
<div class="col-md-3 col-sm-3">Depart:</div>
<div class="col-md-21 col-sm-21">
<input type="text" name="Depart_date" id="Depart_date" value="" class="flexibleDate datepicker">
</div>
</div>
</div>
</div>
<div class="hotelBlock">
<h2 class="Question">3. Hotel Style <sup>*</sup>
<small>
<a href="javascript:void(0);" id="show_arrowUp" title=""><font color="#AE0000">(what's this?)</font></a>
<div class="hint" id="arrowUp" style="display: none" >
<span class="arrowUp"></span>
Instead of ranking hotels in a traditional way, Asia Highlights carefully inspects some selected hotels into 3 styles. Each style ensures good location, nice service and unique SE Asian style.
</div>
</small>
</h2>
<div class="row">
<div class="col-md-8 col-sm-24">
<label for="hotel">
<div class="hotelStyle luxury">
<input name="hotel" type="radio" value="Luxury (5 stars & up)" id="hotel">
Luxury (5 stars & up) <span class="priceRange">USD 200+/room/night</span> </div>
</label>
</div>
<div class="col-md-8 col-sm-24">
<label for="fourStar">
<div class="hotelStyle boutique">
<input name="hotel" type="radio" value=" Handpicked Comfort (4-5 stars) " id="fourStar">
Handpicked Comfort (4-5 stars) <span class="priceRange">USD 100-200/room/night</span> </div>
</label>
</div>
<div class="col-md-8 col-sm-24">
<label for="threeStar">
<div class="hotelStyle comfort">
<input name="hotel" type="radio" value="Standard (3 star) " id="threeStar">
Standard (3 star) <span class="priceRange">USD 50-100/room/night </span> </div>
</label>
</div>
</div>
</div>
<div class="formItem">
<div class="Question">4. What do you expect for this trip?<sup>*</sup></div>
<textarea placeholder="Tell us more to help us understand you better. How can we make it extra special?" onblur="hideTips('sCustominfoTipsid')" name="additionalrequirements" id="additionalrequirements" class="ExpectTrip col-md-22 col-sm-22"></textarea>
<div class="clear"></div>
</div>
<div class="Question">5. Contact Details<sup>*</sup></div>
<div class="row">
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon">
<select id="gender" name="gender">
<option value="100001"> Mr.</option>
<option value="100003"> Ms.</option>
</select>
</span>
<input type="text" id="realname" name="realname" placeholder="Full Name*" class="form-control fullname">
</div>
</div>
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon"><i class="fa fa-globe"></i></span> <span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span>
<input type="text" id="nationality" name="nationality" placeholder="Nationality*" class="form-control nationality ui-autocomplete-input typeahead_nationality typeahead" >
</div>
</div>
<div class="clear"></div>
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group"> <span class="input-group-addon"><i class="fa fa-envelope-o fa-fw"></i></span>
<input type="email" id="email" name="email" placeholder="Email*" class="form-control email">
</div>
<span class="noSpam hidden-xs hidden-sm">We never spam you or sell your address.</span> </div>
<div class="personalInfo col-md-10 col-sm-10 col-xs-23">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon"><i class="fa fa-phone"></i></span>
<input type="tel" id="PhoneNo" name="PhoneNo" placeholder="+country code and number." class="form-control telephone">
</div>
<span class="noSpam hidden-xs hidden-sm">Only call you if you ask, or for email issues.</span> </div>
</div>
<div class="sendInquiry row">
<div class="col-md-7 col-md-7 hidden-xs"></div>
<div class="col-md-10 col-sm-10 col-xs-24">
<input type="button" id="js_nextsteps" value="Send my inquiry" onclick="submitForm('form_inquiry');" />
</div>
<div class="col-md-7 col-md-7 hidden-xs"></div>
</div>
</div>
<input type="hidden" name="cli_no" value="<?php echo $post_cli_no; ?>" />
<input type="hidden" name="cli_sn" value="<?php echo $post_cli_sn; ?>" />
<input type="hidden" name="cli_days" value="<?php echo $post_days; ?>" />
<input type="hidden" name="destinations" value="<?php echo $post_destinations; ?>" />
</form>
</div>
</div>
</div>

@ -0,0 +1,340 @@
<link href="/min/?f=/css/tailor-make.css,/css/tour-detail.css" rel="stylesheet">
<script language="javascript">
$(function () {
$("#flexible_date_yes").click(function () {
$('#choose_date_box').show();
});
$("#flexible_date_no").click(function () {
$('#choose_date_box').hide();
});
$("#show_arrowUp").mouseover(function () {
$('#arrowUp').show();
});
$("#show_arrowUp").mouseout(function () {
$('#arrowUp').hide();
});
})
</script>
<div id="inquiryForm">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-2 hidden-xs"></div>
<div class="col-md-3 col-sm-3 col-xs-6 pgHead"><img src="/image/peggie.png" class="img-responsive"></div>
<div class="col-md-19 col-sm-19 col-xs-18"> <span class="advisorInfo"> <span class="arrow"></span>The joy of travel starts at home! Your travel adventure starts the moment you start to map it out. Were here to help you discover SE Asia in your way!</span> </div>
<div class="clearfix"></div>
<div class="col-md-5 col-sm-5 hidden-xs"></div>
<div class="col-md-19 col-sm-19 col-xs-24">
<div class="FormDetail">
<form action="<?php echo site_url('orders/tailormade_save'); ?>" method="post" id="form_tailormade" name="form_tailormade" >
<div class="whoTravel">
<h2 class="Question">1. Travelers? <sup>*</sup></h2>
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType adults"> Adults (age 18+)
<select id="adultsNumber" name="adultsNumber">
<?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6+" >6+</option>
</select>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType youth"> Youth (age 12-17)
<select id="ChildrenNumber" name="ChildrenNumber">
<?php for ($i = 0; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6+" >6+</option>
</select>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="groupType kids"> Children (&lt; age 12)
<select id="BabiesNumber" name="BabiesNumber">
<?php for ($i = 0; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6+" >6+</option>
</select>
</div>
</div>
</div>
</div>
<div class="travelDays row">
<h2 class="Question">2. Tour Length <sup>*</sup></h2>
<div class="col-md-8 col-sm-10">
<div class="daysBlock">
<select class="tourdays" name="cli_tourdays" id="cli_tourdays">
<option selected value="">- how many -</option>
<?php for ($i = 1; $i <= 20; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="20+">20+</option>
</select>
days </div>
</div>
<div class="col-md-14 col-sm-14"><span class="dateFlexible">Are your dates flexible?</span> <br>
<input type="radio" class="hotel" value="daysFlexible_yes" name="daysFlexible">
Yes
<input type="radio" class="hotel" value="daysFlexible_no" name="daysFlexible">
No </div>
</div>
<div class="formItem">
<h2 class="Question">3. Date of Arrival<sup>*</sup></h2>
<div class="row">
<div class="col-md-10 col-sm-10">
<input type="text" class="arrivalDate datepicker" id="Date_Start" name="Date_Start" value="" placeholder="mm/dd/yyyy" autocomplete="off">
</div>
<div class="col-md-14 col-sm-14"><span class="dateFlexible">Flexible to arrive? </span> <br>
<input type="radio" class="hotel" value="yes" id='flexible_date_yes_1' name="flexible_date">
Yes
<input type="radio" class="hotel" value="no" id='flexible_date_no_1' name="flexible_date">
No </div>
</div>
<div id='choose_date_box' style="display:none;">
<div class="Flexible">Choose the date!</div>
<div class="row ChooseDate">
<div class="col-md-3 col-sm-3">Arrive:</div>
<div class="col-md-21 col-sm-21">
<input type="text" class="flexibleDate datepicker" value="" name="Arrive_date" id="Arrive_date">
</div>
</div>
<div class="row ChooseDate">
<div class="col-md-3 col-sm-3">Depart:</div>
<div class="col-md-21 col-sm-21">
<input type="text" class="flexibleDate datepicker" value="" name="Depart_date" id="Depart_date">
</div>
</div>
</div>
</div>
<div class="whoTravel">
<h2 class="Question">4. Where will you start and end the tour?</h2>
<div class="row">
<div class="col-md-10 col-sm-10 col-xs-24">
<div class="flightOption ending">
<select name="Start_City" >
<option value="Starting City">Start City</option>
<option value="Undecided">Undecided</option>
<option value="Open to Suggestion">Open to Suggestion</option>
<option value="Hanoi">Hanoi</option>
<option value="Ho Chi Minh City">Ho Chi Minh City</option>
<option value="Bangkok">Bangkok</option>
<option value="Other City">Other City</option>
</select>
</div>
</div>
<div class="col-md-10 col-sm-10 col-xs-24">
<div class="flightOption starting">
<select name="End_City" >
<option value="Ending City">End City</option>
<option value="Undecided">Undecided</option>
<option value="Open to Suggestion">Open to Suggestion</option>
<option value="Hanoi">Hanoi</option>
<option value="Ho Chi Minh City">Ho Chi Minh City</option>
<option value="Bangkok">Bangkok</option>
<option value="Other City">Other City</option>
</select>
</div>
</div>
</div>
</div>
<div class="hotelBlock">
<h2 class="Question">5. Hotel Style <sup>*</sup>
<small>
<a href="javascript:void(0);" id="show_arrowUp" title=""><font color="#AE0000">(what's this?)</font></a>
<div class="hint" id="arrowUp" style="display: none" >
<span class="arrowUp"></span>
Instead of ranking hotels in a traditional way, Asia Highlights carefully inspects some selected hotels into 3 styles. Each style ensures good location, nice service and unique SE Asian style.
</div>
</small>
</h2>
<div class="row">
<div class="col-md-8 col-sm-24">
<label for="fiveStar">
<div class="hotelStyle luxury">
<input name="hotel" type="radio" value="Luxury (5 stars & up)" id="fiveStar">
Luxury (5 stars & up) <span class="priceRange">USD 200+/room/night</span> </div>
</label>
</div>
<div class="col-md-8 col-sm-24">
<label for="fourStar">
<div class="hotelStyle boutique">
<input name="hotel" type="radio" value=" Handpicked Comfort (4-5 stars) " id="fourStar">
Handpicked Comfort (4-5 stars) <span class="priceRange">USD 100-200/room/night</span> </div>
</label>
</div>
<div class="col-md-8 col-sm-24">
<label for="threeStar">
<div class="hotelStyle comfort">
<input name="hotel" type="radio" value="Standard (3 star) " id="threeStar">
Standard (3 star) <span class="priceRange">USD 50-100/room/night </span> </div>
</label>
</div>
</div>
</div>
<div class="guideBlock">
<h2 class="withText Question">6. Guide v Freetime <sup>*</sup></h2>
<div class="row">
<div class="tipText">Ask for the full or half guiding service(guide and private transfer) as your travel experience and where to visit.</div>
<div class="col-md-8 col-sm-12">
<label for="fullguide">
<div class="guideStyle everyDay">
<input type="radio" name="guiding" value="Every Day Guided" id="fullguide">
Every Day Guided & Private Transfer</div>
</label>
</div>
<div class="col-md-8 col-sm-12">
<label for="mostguide">
<div class="guideStyle mostDay">
<input type="radio" name="guiding" value="Most Days Guided" id="mostguide">
Most Days Guided & Private Transfer</div>
</label>
</div>
<div class="col-md-8 col-sm-12">
<label for="essguide">
<div class="guideStyle onlyEssential">
<input type="radio" name="guiding" value="Essential Days Guided" id="essguide">
Essential Days Guided & Private Transfer </div>
</label>
</div>
</div>
</div>
<div class="specialRequest">
<h2 class="withText Question">7. What's your ideal trip? <sup>*</sup></h2>
<div class="row">
<div class="tipText">Tell us where you want to visit, what your must-sees and your interests are.<br/>
*(3) means the suggested days in each place.</div>
<div class="citySelect">
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Yangon(3)">
Yangon(3)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Bagan(2)">
Bagan(2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Inle Lake(2)">
Inle Lake(2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Mandalay(2)">
Mandalay(2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Hanoi(2)">
Hanoi(2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Halong Bay Cruise(2)">
Halong Bay Cruise(2)</label></div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Sapa(3)">
Sapa(3)</label></div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Hoi An (2)">
Hoi An (2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Ho Chi Minh City (2)">
Ho Chi Minh City (2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Mekong Delta (2)">
Mekong Delta (2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Siem reap - Angkor Wat(2)">
Siem Reap(3)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Luang Prabang (2)">
Luang Prabang (2)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Cambodia">
Cambodia(5)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Laos">
Laos (3)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="Thailand">
Thailand(3)</label>
</div>
<div class="col-md-6 col-sm-6 col-xs-8">
<label>
<input type="checkbox" name="city[]" value="China">
China(8)</label>
</div>
</div>
<textarea class="simpleinfoBox col-md-22 col-sm-22" wrap="hard" name="additionalrequirements" id="additionalrequirements" onfocus="dispTips('sCustominfoTipsid')" onBlur="hideTips('sCustominfoTipsid')" placeholder="Tell us more to help us understand you better, such as I want to take the hot air balloon ride in Bagan, I want a day trip to Hue from Hoi An... How can we make it extra special?"></textarea>
</div>
</div>
<div class="contactinfo">
<h2 class="Question">8. Contact Details <sup>*</sup></h2>
<div class="row">
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon">
<select name="gender" id="gender">
<option value="100001"> Mr.</option>
<option value="100003"> Ms.</option>
</select>
</span>
<input class="form-control fullname" type="text" placeholder="Full Name*" name="realname" id="realname" >
</div>
</div>
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon"><i class="fa fa-globe"></i></span>
<input class="form-control nationality typeahead_nationality typeahead" type="text" placeholder="Nationality*" name="nationality" id="nationality" >
</div>
</div>
<div class="clear"></div>
<div class="personalInfo col-md-10 col-sm-10">
<div class="input-group"> <span class="input-group-addon"><i class="fa fa-envelope-o fa-fw"></i></span>
<input class="form-control email" type="email" placeholder="Email*" name="email" id="email" >
</div>
<span class="noSpam hidden-xs hidden-sm">We never spam you or sell your address.</span> </div>
<div class="personalInfo col-md-10 col-sm-10 col-xs-23">
<div class="input-group margin-bottom-sm"> <span class="input-group-addon"><i class="fa fa-phone"></i></span>
<input class="form-control telephone" type="tel" placeholder="+country code and number." name="PhoneNo" id="PhoneNo" >
</div>
<span class="noSpam hidden-xs hidden-sm">Only call you if you ask, or for email issues.</span> </div>
</div>
</div>
<div class="clearfix"></div>
<div class="sendInquiry row">
<div class="col-md-7 col-sm-7 hidden-xs"></div>
<div class="col-md-10 col-sm-10 col-xs-24">
<input type="button" value="Help Me Plan" onclick="submitForm('form_tailormade');" >
</div>
<div class="col-md-7 col-sm-7 hidden-xs"></div>
</div>
</form>
</div>
</div>
</div>
</div>

@ -0,0 +1,5 @@
<form action="ver_do" method="post">
<input type="text" name="name" />
<input type="text" name="pa" />
<input type="submit" />
</form>

@ -0,0 +1,62 @@
<link href="/min/?f=/css/contact.css" rel="stylesheet">
<div id="inquiryForm">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3 hidden-xs"></div>
<div class="col-md-18 col-sm-18 col-xs-24">
<div class="thankyouHead">
<h1>Thank you for your inquiry with Asia Highlights!</h1>
<span>One of our travel experts will reply you within 24 hours!</span>
</div>
<div class="thankyouContent">
<div class="row">
<div class="col-md-5 col-sm-5 hidden-xs">
<img src="/image/albee-ning.jpg" class="img-responsive">
</div>
<div class="col-xs-6 hidden-md hidden-sm"></div>
<div class="col-xs-12 hidden-md hidden-sm visible-xs">
<img src="/image/albee-ning.jpg" class="img-responsive">
</div>
<div class="col-xs-6 hidden-md hidden-sm"></div>
<div class="col-md-19 col-sm-19 col-xs-24">
<div class="pgSay">
<span class="arrow hidden-xs"></span>
Talk directly to Albee Ning, our expert travel advisor
<span class="whatsapp">WhatsApp: <strong>+86 158 7702 2710</strong></span>
</div>
</div>
<div class="clearfix"></div>
<div class="tips">
If you do not receive a response in your "inbox" within 24 hours, check your "junk mail" folders or email to
<a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a> who will investigate the case.
</div>
<script>(function(w,d,t,r,u){var f,n,i;w[u]=w[u]||[],f=function(){var o={ti:"5319637"};o.q=w[u],w[u]=new UET(o),w[u].push("pageLoad")},n=d.createElement(t),n.src=r,n.async=1,n.onload=n.onreadystatechange=function(){var s=this.readyState;s&&s!=="loaded"&&s!=="complete"||(f(),n.onload=n.onreadystatechange=null)},i=d.getElementsByTagName(t)[0],i.parentNode.insertBefore(n,i)})(window,document,"script","//bat.bing.com/bat.js","uetq");</script><noscript><img src="//bat.bing.com/action/0?ti=5319637&Ver=2" height="0" width="0" style="display:none; visibility: hidden;" /></noscript>
<!-- Google Code for Tour Inquiry Conversion Page -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 880694317;
var google_conversion_language = "en";
var google_conversion_format = "3";
var google_conversion_color = "ffffff";
var google_conversion_label = "BQv_CJvYlmcQraj5owM";
var google_remarketing_only = false;
/* ]]> */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/880694317/?label=BQv_CJvYlmcQraj5owM&amp;guid=ON&amp;script=0"/>
</div>
</noscript>
<script>(function(w,d,t,r,u){var f,n,i;w[u]=w[u]||[],f=function(){var o={ti:"5475230"};o.q=w[u],w[u]=new UET(o),w[u].push("pageLoad")},n=d.createElement(t),n.src=r,n.async=1,n.onload=n.onreadystatechange=function(){var s=this.readyState;s&&s!=="loaded"&&s!=="complete"||(f(),n.onload=n.onreadystatechange=null)},i=d.getElementsByTagName(t)[0],i.parentNode.insertBefore(n,i)})(window,document,"script","//bat.bing.com/bat.js","uetq");</script><noscript><img src="//bat.bing.com/action/0?ti=5475230&Ver=2" height="0" width="0" style="display:none; visibility: hidden;" /></noscript>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 hidden-xs"></div>
</div>
</div>
</div>

@ -0,0 +1,8 @@
<form action="" method="post">
<input type="text" name="_ver" />
<?php foreach ($r as $key => $value):?>
<input type="hidden" name="<?php echo $key;?>" value="<?php echo $value;?>" />
<?php endforeach;?>
<input type="submit" />
</form>
<img src="test" alt="" onclick="this.src='test?'+Math.random();">

@ -0,0 +1,65 @@
<link href="/min/?f=/css/inquiry-form.css" rel="stylesheet">
<form id="form_tour_detail" name="form_tour_detail" action="<?php echo site_url('orders/asia_tour'); ?>" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: <?php echo $pd_tour->CLI_Days; ?> days
</li>
<li>
Tour Code:<?php echo $pd_tour->CLI_NO; ?>
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">#<?php echo $pd_tour->CLI_NO; ?>#</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Date of Arrival:</span>
<input value="" name="Starting_Date" id="Starting_Date" class="arrivalDate datepicker" style="background-color:#FFF" placeholder="mm/dd/yy" />
</div>
<div class="traveller">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Travelers </span>
</div>
<div class="row">
<div class="col-md-7 col-sm-7 col-xs-7">
<div class="traveller">
<select id="adultsNumber" name="adultsNumber" >
<?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select>
<span class="title"> age 18+ </span>
</div>
</div>
<div class="col-md-9 col-sm-9 col-xs-9">
<div class="traveller">
<select id="ChildrenNumber" name="ChildrenNumber"><option value="0">0</option><?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select> <span class="title"> age 12-17 </span>
</div>
</div>
<div class="col-md-7 col-sm-7 col-xs-7">
<div class="traveller">
<select id="BabiesNumber" name="BabiesNumber"><option value="0">0</option><?php for ($i = 1; $i <= 5; $i++) { ?>
<option value="<?php echo $i; ?>" ><?php echo $i; ?></option>
<?php } ?>
<option value="6" >6+</option> </select> <span class="title"> age &lt;12 </span>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="<?php echo $pd_tour->CLI_NO; ?>" type="hidden" />
<input name="cli_days" id="cli_days" value="<?php echo $pd_tour->CLI_Days; ?>" type="hidden" />
<input name="destinations" id="destinations" value="<?php echo $pd_tour->CLI2_PassCity; ?>" type="hidden" />
</form>

@ -0,0 +1,53 @@
<form action="http://www.chinahighlights.com/forms/booking-form-pay1.asp" id="formquestion" method="post" novalidate="novalidate" class="is_stuck" style="">
<div id="InquiryPay">
<div class="PayBoxTop"></div><div class="PayInfo">
<span class="BookTitle"><?php echo $pd_tour->CLI2_Name ?></span>
<ul class="tourList">
<li><strong>Duration:</strong> 10 hours (approx.)</li>
<li>Tour Type: Private Tour</li>
</ul>
<div class="promoPrice"> <a class="priceLink" href="#gotoprice">See price details</a></div>
<div class="PayInfoBottom"><img src="http://data.chinahighlights.com/pic/pay-form-bottom.png"></div>
</div>
<div class="PayBox">
<div class="infoRequired">
<p>
<input type="text" id="Starting_Date" name="Starting_Date" value="" placeholder="Travel Date">
<span id="dateerrmsg" class="hidden"></span>
</p>
</div>
<input name="season" type="hidden" value="2">
<input name="grade" type="hidden" value="<?php echo $pd_tour->CLI_Grade; ?>">
<input name="cli_no" type="hidden" value="<?php echo $pd_tour->CLI_NO; ?>">
<input type="submit" value="Reserve Your Date" id="form_sumbit_button" class="sendButton">
</div>
</div>
</form>
<script type="text/javascript">
$(function() {
$("#formquestion").stick_in_parent({parent: "#mcontent"});
//form valid
$('#form_sumbit_button').click(function() {
var stdate = $('input[name="Starting_Date"]').val();
if (stdate == '') {
$('#dateerrmsg').html('<span style="color:#c00">Please select prefered time</span>');
$('#dateerrmsg').removeClass('hidden');
return false;
}
});
$("#Starting_Date").datepicker({
showAnim: "fadeIn",
duration: 0,
minDate: 7,
maxDate: "2y",
numberOfMonths: 2,
showButtonPanel: true
});
});
</script>

@ -0,0 +1,67 @@
<form action="http://www.chinahighlights.com/forms/reserve-tour-simple-save.asp" id="formquestion" method="post" novalidate="novalidate">
<div id="questionBox">
<div class="questionContent">
<span class="interested">What's Your Style?</span> <span class="interest-label">Each tour can be tailored.</span>
<div class="infoRequired">
<div class="yourStyle hidden-xs">
<input type="radio" name="travelstyle" value="Comfort" /> Comfort <input type="radio" name="travelstyle" value="Discovery" /> Discovery <input type="radio" name="travelstyle" value="Essential" /> Essential
</div>
<p style="display:block;">
<label for="realname" style="opacity:1;">Full Name: </label> <input name="realname" type="text" id="realname" value="" />
</p>
<p style="display:block;">
<label for="yemail">Email: </label> <input name="yemail" type="text" id="yemail" value="" />
</p>
<p class="des" style="display:block;">
<label for="Aquestion">Tell us your tour ideas: where to visit, how many people and days... </label>
<textarea name="Aquestion" id="Aquestion"></textarea>
<input type="hidden" name="Q_URL" id="Q_URL" value="<?php echo $detail->ic_url; ?>" />
<input type="hidden" value="<?php echo $pd_tour->CLI_NO; ?>" name="clino" />
</p>
</div>
<input type="submit" value="Send" class="sendButton" />
</div>
</div>
</form>
<script>
$(function() {
$("#formquestion").stick_in_parent({parent: "#mcontent"});
$(document).on("click", ".error", function() {
$(this).parent("p").find(".arrowDownTest").remove();
});
$("#formquestion").validate({
rules: {
realname: {
required: true,
minlength: 1
},
yemail: {
required: true,
email: true
}
},
messages: {
realname: "Please enter a real name",
yemail: "Please enter a valid email address."
},
errorLabelContainer: "#questionBox .infoRequired p .arrowDownTest",
errorPlacement: function(error, element) {
var error_tip = "<div class=\"arrowDownTest\"><div class=\"arrowDown\"><img src=\"/css/images/whiteArrow.png\"></div></div>";
element.parent().append(error_tip);
error.appendTo(element.parent().find(".arrowDownTest"));
},
focusInvalid: true,
submitHandler: function(form) {
//form.find(".arrowDownTest").show();
form.submit();
},
//debug: true
});
//---------------------------------------------------------------------------------------------------------------------------------------
})
</script>

@ -0,0 +1 @@
34DNqem3IcKyVajdyD8N/G0YTIQ/SSh0SfqYocn7Kuw=

@ -0,0 +1,5 @@
RewriteEngine on
RewriteBase ./
RewriteRule ^/$ /index.php/information/detail/ [L]
RewriteRule ^(/contact-us.htm|/tailor-make.htm|/tour/|/tour/tour-detail.htm)$ /index.php/information/detail/ [L]

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 B

@ -0,0 +1,146 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div id="banner">
<img src="/image/travel-guide/vietnam/saigon-at-sunset.jpg" class="img-responsive hidden-xs" alt="Saigon at Sunset" /> <img src="/image/travel-guide/vietnam/saigon-at-sunset.jpg" class="img-responsive visible-xs" alt="Saigon at Sunset" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
1-Day Classic Ho Chi Minh City Tour
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row TourInfo">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Explore the old and modern Ho Chi Minh City in one day, the biggest city in Vietnam! Enjoy the day on your own pace as this is a private trip with a private local guide and a clean air-conditioned car. The tour guide could pick you up either from your hotel or from the cruise port.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>War Remnants Museum </li>
<li>
Reunification Palace
</li>
<li>
Notre Dame Cathedral
</li>
<li>
Central Post Office e
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking tour guides </li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>Lunch in a local restaurant</li>
<li>
Governmental taxes
</li>
</ul>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="peggiebox" style="padding-right:10px;">
<div class="peggiebox" style="padding-right:10px;"></div>
</div>
</div>
<div class="peggiebox">
<div class="peggiebox" style="padding-right:10px;"></div>
</div>
<div class="peggiebox">
<p>
Once confirmed the tour with Asia Highlights, you will receive the detailed information about your guide and the tour. Your guide will contact you in advance and pick you up at the appointed time in the morning after you have your breakfast.
</p>
<p>The tour starts from visiting<strong> War Remnants Museum</strong> in the morning. It was a must for first-timers. Visitors could get a glimpse of the brutality of war and its civilian victims.</p>
<p><strong>Reunification Palace</strong>, formerly known as Independence Palace, was the former home and workplace of the President during Vietnam War until the fall of Saigon during which a North Vietnamese army tank stormed its gates and ended the war.</p>
<p>Next head to visit <strong>Notre Dame Cathedral</strong> and <strong>Central Post Office</strong> are situated closely, which are landmarks of Ho Chi Minh City. Dong Khoi Street, Opera House, City Hall and Continental Hotel are all within walking distance. If interested time permits, take a stroll around the area.</p>
<p>After finishing the tour, your guide will take you back to your hotel or the port.</p>
<div class="tourPhotoL">
<img src="/image/travel-guide/vietnam/notre-dame-cathedral.jpg" class="img-responsive" alt="Notre Dame Cathedral" /> <span class="photoTitle">Landmark of Ho Chi Minh City: Notre Dame Cathedral</span>
</div>
<h2 class="itineraryIcon">
<a name="itinerary"></a>Tailor-make Your Trip
</h2>
<p>Asia Highlights excels in tailor-making trips to Vietnam, Cambodia, Laos, Myanmar and Thailand. If the trip above does not fit you, our expert travel advisor team is always ready to help you <a href="/create-my-trip.htm"><strong>create a unique trip</strong></a>. </p>
</div>
<div class="peggiebox">
<div class="peggiebox" style="padding-right:10px;"> </div>
</div>
<div class="peggiebox">
<div class="peggiebox" style="padding-right:10px;">
<div class="peggiebox" style="padding-right:10px;"></div>
</div>
</div>
<div class="peggiebox">
<div class="peggiebox" style="padding-right:10px;"></div>
</div>
<div class="peggiebox">
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
</ul>
</div>
<link href="/min/?f=/css/inquiry-form.css" rel="stylesheet">
<form id="form_tour_detail" name="form_tour_detail" action="https://www.asiahighlights.com/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 8 Hours
</li>
<li>
Tour Code:AH-0001 </li>
<li>
Tour Type: Private Tour
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">179</span>
</div>
<div class="tailorButton">
<a href="/create-my-trip.htm">Create My Trip Now</a> <span class="promiseWords">No extra cost</span>
</div></div>
</form>
</div>
</div>
</div>
<!--#include virtual="/aspbackup/inc/info-footer.asp" -->
</body>
</html>

@ -0,0 +1,180 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div id="banner"><img src="/image/tour-detail-top.jpg" class="img-responsive hidden-xs">
<img src="/image/home-banner-s.jpg" class="img-responsive visible-xs">
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>7 Great Things to Do with Kids in China</h1>
</div></div>
</div>
<div class="InformationDetail">
<div class="container InfoDetail">
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>7 Great Things to Do with Kids in China</h1></div>
<div class="col-md-17 col-sm-17 col-xs-24 Information pull-right">
<p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p>
<p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p>
<h2 class="RedBorder">China Highlights China Highlights</h2>
<div class="row ArticleInfo">
<div class="col-md-14 col-sm-14 col-xs-24"><p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p>
<p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p></div>
<div class="col-md-10 col-sm-10 col-xs-24"><img src="/image/tour-photo.jpg" class="img-responsive img-rounded" alt="xxx"></div>
</div>
<h2 class="RedBorder">China Highlights China Highlights</h2>
<div class="row ArticleInfo">
<div class="col-md-14 col-sm-14 col-xs-24"><p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p>
<p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p></div>
<div class="col-md-10 col-sm-10 col-xs-24"><img src="/image/tour-photo.jpg" class="img-responsive img-rounded" alt="xxx"></div>
</div>
<h2>How to Plan a Tour of Vietnam</h2>
<p>China Highlights offers China city tour packages to cities or destinations, lasting 2 to 5 days. Explore the Great Wall near Beijing, water towns near Shanghai, Terracotta Army in Xi'an, or Li River from Guilin to Yangshuo, and there are more China city discoveries.</p>
<div class="table-responsive">
<table border="1" cellspacing="0" cellpadding="0" class="InfoTable">
<tr>
<th colspan="3"><span class="TrainNumber">MR1T8702</span></td>
<th colspan="3"><span class="TrainNumber">T8701MR2</span> </td>
</tr>
<tr>
<th >Stop</th>
<th >Arrival</th>
<th >Departure</th>
<th >Stop</th>
<th >Arrival</th>
<th >Departure</th>
</tr>
<tr>
<td >Gia Lam</td>
<td >&nbsp;</td>
<td >21:40</td>
<td >Nanning (China)</td>
<td >&nbsp;</td>
<td >17:45</td>
</tr>
<tr>
<td >Bac Giang</td>
<td >22:39</td>
<td >22:42</td>
<td >Chongzuo (China)</td>
<td >19:24<</td>
<td >19:28</td>
</tr>
<tr>
<td >Dong Dang</td>
<td >02:00</td>
<td >03:00</td>
<td >Pingxing (China)</td>
<td >21:11</td>
<td >22:41</td>
</tr>
<tr>
<td >Pingxing (China)</td>
<td >03:41</td>
<td >05:41</td>
<td >Dong Dang</td>
<td >23:22</td>
<td >00:22</td>
</tr>
<tr>
<td >Chongzuo (China)</td>
<td >07:07</td>
<td >07:10</td>
<td >Bac Giang</td>
<td >03:40</td>
<td >03:43</td>
</tr>
<tr>
<td >Nanning (China)</td>
<td >09:12</td>
<td >&nbsp;</td>
<td >Gia Lam</td>
<td >
04:45</td>
<td >&nbsp;</td>
</tr>
</table>
</div>
<div class="YouMayLike">
<h2>You May Like</h2>
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
<a href="/huangshan/"><img src="http://data.chinahighlights.com/image/tour-detail/huangshan/pine-100.jpg"><strong>Learn More about the Yellow Mountians</strong></a>
</div>
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
<a href="/huangshan/"><img src="http://data.chinahighlights.com/image/tour-detail/huangshan/pine-100.jpg"><strong>Learn More about the Yellow Mountians</strong></a>
</div>
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
<a href="/huangshan/"><img src="http://data.chinahighlights.com/image/tour-detail/huangshan/pine-100.jpg"><strong>Learn More about the Yellow Mountians</strong></a>
</div>
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
<a href="/huangshan/"><img src="http://data.chinahighlights.com/image/tour-detail/huangshan/pine-100.jpg"><strong>Learn More about the Yellow Mountians</strong></a>
</div></div>
<div class="hidden-xs"><script src="http://data.chinahighlights.com/js/tour/tailor-in-page.js"></script><link media="all" type="text/css" rel="stylesheet" href="/css/inpage-tailor.css?v=20131219">
</div>
<div class="hidden-xs">
<div class="tourPublishers col-md-24">
<div class="publishintros col-md-12">
<div class="publishPic pull-left">
<img class="img-responsive" src="http://data.chinahighlights.com/image/travelguide/city-guide/gavin-van-hinsbergh.jpg">
</div>
<ul class="author pull-left">
<li><strong>Author:</strong> <a href="https://plus.google.com/109841824167916396137?rel=author">Gavin Van Hinsbergh</a></li>
<li><strong>Update:</strong> February 14, 2016</li>
<li><a class="feedback" href="/author/gavin-van-hinsbergh/" rel="nofollow">See all my travel articles</a></li>
<li><a class="email" href="mailto:gavin@chinahighlights.com" rel="nofollow">Send feedback</a></li>
</ul>
</div>
<div class="chtqrcode"><a target="_blank" rel="nofollow" class="dmca-badge" title="DMCA.com Protection Status" href="http://www.dmca.com/Protection/Status.aspx?ID=43e5afb9-779c-4d87-b7c3-e11cce02004b"> <img alt="DMCA.com Protection Status" src="//images.dmca.com/Badges/_dmca_premi_badge_1.png?ID=43e5afb9-779c-4d87-b7c3-e11cce02004b"></a> </div>
</div>
</div>
</div>
<div class="col-md-7 col-sm-7 col-xs-24 pull-left">
<ul class="ArticleList">
<li class="ListTop">7 Great Things to Do with Kids</li>
<li>7 Great Things to Do with Kids</li>
<li>7 Great Things to Do with Kids</li>
<li>7 Great Things to Do with Kids</li>
<li>7 Great Things to Do with Kids</li>
</ul>
<img src="/image/why-left.jpg" class="img-responsive img-rounded" alt="xxx">
</div>
</div>
</div></div>
<!--#include virtual="/aspbackup/inc/footer.asp" -->
</body>
</html>

@ -0,0 +1,282 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div id="banner"><img src="/image/travel-guide/tomb-of-khai-dinh.jpg" alt="Tomb of Khai Dinh" class="img-responsive hidden-xs">
<img src="/image/home-banner-s.jpg" class="img-responsive visible-xs">
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>Vietnam Travel Guide </h1>
</div></div>
</div>
<div class="TopInfo">
<div class="container">
<div class="row">
<div class="col-md-10 col-sm-10 col-xs-24"><p>Have you come up with the idea of traveling to Vietnam, but don&rsquo;t know how to plan it? The following travel guide may help your idea to go a bit further. </p>
<p><span class="TopMore">How to Plan a Vietnam Trip</span> </p>
</div>
<div class="col-md-7 col-sm-7 col-xs-24">
<ul class="TopList">
<li class="money">FLIGHT TIME<div class="clear"></div><span class="TopLine">20 hours (Hanoi, via New York)</span></li>
<li class="add">RECOMMENDED AIRLINES<div class="clear"></div>
<span class="TopLine">Vietnam Airlines, Cathay Pacific,mirates,Qatar Airways, Thai Airways</span></li>
</ul>
</div>
<div class="col-md-7 col-sm-7 col-xs-24"><ul class="TopList">
<li class="TimeZone">TIME ZONE<div class="clear"></div>
<span class="TopLine">UC+7</span></li>
<li class="FlyFrom">WHERE CAN YOU FLY FROM<div class="clear"></div>
<span class="TopLine">Flights to Vietnam are available from London, Paris and Hong Kong.</span></li>
</ul></div>
</div>
</div>
</div>
<div class="TopThings">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 hidden-xs cityMap">
<img src="/image/bg-vn-map.png" class="img-responsive">
<div class="flightTimes hidden-xs">
<span>Flights Time from Main Cities</span>
<ul>
<li>Departure City</li>
<li>London</li>
<li>Tokyo</li>
<li>Tokyo</li>
<li>Tokyo</li>
</ul>
<ul>
<li>Flight Time</li>
<li>2 hours</li>
<li>2 hours</li>
<li>2 hours</li>
<li>2 hours</li>
</ul>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="row">
<h2>
Top Things to Do in Vietnam
</h2>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="The Old Quarter" class="img-responsive img-rounded" src="/image/travel-guide/the-old-quarter.jpg"> <span class="toptitle">Explore the Old Quarter</span> </a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Street Food on Night Market" class="img-responsive img-rounded" src="/image/travel-guide/street-food-on-night-market.jpg"> <span class="toptitle">Take a food adventure on a night market</span></a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Hue Imperial Tomb" class="img-responsive img-rounded" src="/image/travel-guide/hue-imperial-tomb.jpg"> <span class="toptitle">Walk into the Imperial City</span> </a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Hoi An Cooking Class" class="img-responsive img-rounded" src="/image/travel-guide/hoi-an-cooking-class.jpg"> <span class="toptitle">Take a cooking class in Hoi An</span> </a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Cu Chi Tunnels" class="img-responsive img-rounded" src="/image/travel-guide/cu-chi-tunnels.jpg"> <span class="toptitle">Go deep into Cu Chi Tunnels</span> </a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Mekong River" class="img-responsive img-rounded" src="/image/travel-guide/mekong.jpg"> <span class="toptitle">Take an excursion to Mekong Delta</span> </a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Phu Quoc Island" class="img-responsive img-rounded" src="/image/travel-guide/phu-quoc-island.jpg"> <span class="toptitle">Unwind on the Beach of Phu Quoc Island</span></a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="toparticle">
<a href="#"><img alt="Mai Chau" class="img-responsive img-rounded" src="/image/travel-guide/mai-chau.jpg"> <span class="toptitle">Go Trekking in Mai Chau</span> </a>
</div>
</div>
<div class="col-md-24 col-sm-24 col-xs-24 AllDetails">
<a href="/vietnam/top-things-to-do.htm">GET TO ALL THE DETAILS &gt;&gt;</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TopInfo">
<div class="container">
<div class="row Bottom">
<h2>Vietnam Trip Ideas</h2>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="photoInfo"><img src="/image/water-market.jpg" class="img-responsive" alt="xxx">
<span class="infoTitle">Trip Planning</span>
</div>
<div class="listInfo">
<ul>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
</ul>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="photoInfo"><img src="/image/water-market.jpg" class="img-responsive" alt="xxx">
<span class="infoTitle">Before You Go</span>
</div>
<div class="listInfo">
<ul>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
</ul>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="photoInfo"><img src="/image/water-market.jpg" class="img-responsive" alt="xxx">
<span class="infoTitle">Die For Something</span>
</div>
<div class="listInfo">
<ul>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
<li><a href="#">Grasp Vietnam's timeless charm through</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24"><h2>Getting into Vietnam</h2></div>
<div class="col-md-14 col-sm-14 col-xs-24"><a href="/vietnam/get-in-vietnam-by-air.htm"><div class="toparticle">
<img src="/image/travel-guide/lady-at-the-airport.jpg" class="img-responsive img-rounded" alt="Laday at the Airport">
<span class="toptitle">How to Get to Vietnam by Air</span>
</div></a></div>
<div class="col-md-10 col-sm-10 col-xs-24">
<img src="/image/travel-guide/local-woman-sitting-on-the-beach.jpg" class="img-responsive" alt="Vietnam Woman Sitting on the Beach">
<div class="BottomArticle">
<span class="BottomTitle">How to Get to Vietnam via Land or Water</span>
<p>International trains are only available from China and bus is recommended to take when entering from Cambodia. Crossing from Laos by bus takes a long time with much trouble, so it is advisable to fly in from Laos. </p>
</div>
<div class="ViewMore">VIEW MORE ABOUT the Details</div>
</div></div>
</div></div>
<div class="ratedTours">
<div class="container">
<h2>
Top Vietnam Tour Packages
</h2>
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="tourPhoto"><a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm"><img width="361" height="226" class="img-responsive" alt="Lady Walking in Hoi An" src="/image/tour/lady-walking-in-hoi-an-ancient-town.jpg"> </a>
<span class="dayTag">11 <br>days</span>
</div>
<div class="tourInfo">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">
<h3>
9-Day Best of Vietnam with Mekong Delta
</h3>
</a> <span class="destinations">Hanoi - Halong Bay - Hoi An - Ho Chi Minh City - Mekong Delta</span>
<p>
Grasp Vietnam's timeless charm through its natural landscapes and cultures, including a rewarding trip to a floating market in the Mekong Delta.
</p>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="col-md-12 col-sm-12 col-xs-24 viewDetail">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">View Details</a>
</div>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="clear">
</div>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="tourPhoto"><a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm"><img width="361" height="226" class="img-responsive" alt="Lady Walking in Hoi An" src="/image/tour/lady-walking-in-hoi-an-ancient-town.jpg"> </a>
<span class="dayTag">11 <br>days</span>
</div>
<div class="tourInfo">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">
<h3>
9-Day Best of Vietnam with Mekong Delta
</h3>
</a> <span class="destinations">Hanoi - Halong Bay - Hoi An - Ho Chi Minh City - Mekong Delta</span>
<p>
Grasp Vietnam's timeless charm through its natural landscapes and cultures, including a rewarding trip to a floating market in the Mekong Delta.
</p>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="col-md-12 col-sm-12 col-xs-24 viewDetail">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">View Details</a>
</div>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="clear">
</div>
</div>
</div>
<div class="col-md-8 col-sm-8 col-xs-24">
<div class="tourPhoto"><a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm"><img width="361" height="226" class="img-responsive" alt="Lady Walking in Hoi An" src="/image/tour/lady-walking-in-hoi-an-ancient-town.jpg"> </a>
<span class="dayTag">11 <br>days</span>
</div>
<div class="tourInfo">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">
<h3>
9-Day Best of Vietnam with Mekong Delta
</h3>
</a> <span class="destinations">Hanoi - Halong Bay - Hoi An - Ho Chi Minh City - Mekong Delta</span>
<p>
Grasp Vietnam's timeless charm through its natural landscapes and cultures, including a rewarding trip to a floating market in the Mekong Delta.
</p>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="col-md-12 col-sm-12 col-xs-24 viewDetail">
<a rel="nofollow" href="/tours/best-of-vietnam-with-mekong-delta.htm">View Details</a>
</div>
<div class="col-md-6 col-sm-6 hidden-xs">
</div>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="otherCountry">
<div class="container">
<h2>Other Asian Countries</h2>
<div><a href="#" class="vnMap countryLink">Vietnam</a></div>
<div><a href="#" class="cbMap countryLink">Cambodia</a></div>
<div><a href="#" class="laMap countryLink">Laos</a></div>
<div><a href="javacript:;" class="maMap countryLink" title="Coming Soon">Myanmar</a></div>
<div><a href="javacript:;" class="thMap countryLink" title="Coming Soon">Thailand</a></div>
<div class="clearfix"></div>
</div>
</div>
<!--#include virtual="/aspbackup/inc/info-footer.asp" -->
</body>
</html>

@ -0,0 +1,441 @@
<div id="banner">
<img src="/image/tour/lady-walking-in-hoi-an-ancient-town-banner.jpg" class="img-responsive hidden-xs" alt="Vietnamese lady in Ao Dai walking in Hoi An" /> <img src="/image/tour/lady-walking-in-hoi-an-s.jpg" class="img-responsive visible-xs" alt="Vietnamese lady in Ao Dai walking in Hoi An" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
9-Day Best of Vietnam with Mekong Delta: A Taste of Authentic Life
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Being Outwardly novel and inwardly unconventional, Vietnam keeps luring worldwide travelers with its timeless charm. Cruise Halong Bay for a starry dream, enrich your experience with a hands-on cooking class in Hoi An and visit the Mekong Delta. Get a taste of authentic life in the Land of Timeless Charm.
</p>
<h2 class="highlights">
Highlights<!--wozhedoushiweiledingweia-->
</h2>
<div class="tourHighlights">
<ul>
<li>
Halong Bay Cruise in a less-touristy water
</li>
<li>
Walk in the Old Quarter as a local does
</li>
<li>
Meet Asia Highlights' friend Mr. Thanh at his cooking class in Hoi An
</li>
<li>
Crawl into the Cu Chi Tunnels
</li>
<li>
Early morning to visit the floating market of the Mekong Delta
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-1,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Hanoi Arrival
</div>
<p>
Your private Vietnam tour guide and transfer driver will be waiting for you in the airport lobby when your flight lands. They will Ttransfer you to your hotel and you can ease your body and mind with a good nights sleep.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span>Hanoi
</div>
<p>
Vietnam has 55-some minority groups and each of them boasts for special cultures and lifestyles. Get a touch of the minority groups' life in <strong>Vietnam Museum of Ethnology</strong>. Later, learn the mind-provoking history at <strong>Hoa Lo Prison</strong> before lunch at a local restaurant.<br />
Take an easy walk around <strong>Hoan Kiem Lake</strong> and then take a <strong>walking trip in the Old Quarter</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - What to do at night? </span>
<p>
In the mood of some music? Attend the music show at <strong>Thang Long Ca Tru Guild</strong> at the Old Quarter. Twice or three times every week, schollars and tranditional artists of Vietnamese traditional music, Ca Tru, will put on performance here for those to enjoy some music and learn to play traditional instruments.
</p>
</div>
<img src="/image/tour/a-vendor-walking-in-the-old-quarter-of-hanoi.jpg" class="img-responsive" alt="A vendor walking in the Old Quarter of Hanoi" />
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
After a fresh coffee and breakfast, you will be on the way to <strong>Halong Bay</strong>. Listed as a UNESCO World Heritage Site, the bay has all it takes for a relaxing journey: a stunning natural landscape, catering services onboard, an outlook over a waterfront lifestyle, and interesting activities, such as kayaking, swimming, and diving.<br />
Itineraries differ for each cruise, but you will probably visit: Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as passing some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet and etc. Some cruises also include a cooking class at night and a taichi lesson in the morning.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - About the cruise:</span>
<p>
1. Theres not much to see during the drive to the bay.so Ttake a nap to recharge,ready for the upcoming journey.<br />
2. Traveling with a baby? Notify us in advance and we will put a crib in your cabin. <br />
3. All meals onboard are included except for drinks. Your privatet our guide will take you shopping for some drinks and snacks before getting onboard.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Indochina Sails (Luxury)
</p>
</div>
<p>
<img src="/image/tour/halong-bay-cruise-in-a-clear-day.jpg" class="img-responsive" alt="Cruising in Halong Bay" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Halong Bay - Hanoi (3 hours by car) - Danang - Hoi An (1 1/2 hours by air)
</div>
<p>
At about 11am, the cruise junk will take you to the pier after brunch, where your private Vietnam tour guide and driver are already in wait. Transfer to the airport and fly to Danang. <br />
Your private tour guide and driver will take you to Hoi An after arrival in Danang. Free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Hoi An
</div>
<p>
Get a touch of Hoi An by a <strong>walking tour in Hoi An Ancient Town</strong>,with your tour guide who will introduce you to the <strong>Japanese Covered Bridge</strong>, <strong>Fujian Assembly Hall (Phuc Kien)</strong> and <strong>Old House of Tan Ky</strong>, and then you will learn how to <strong>make a lantern</strong> at a traditional workshop. <br />
After dinner at a riverfront restaurant, you may visit Hoi An Night Market on your own or go for a swim at your hotel; either way will be a perfect way to call it a night.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - A new dress!</span>
<p>
Want to renew your wardrobe with a tailor-made dress in Hoi An? Your tour guide will tell you where to go.Usually,an experienced tailor only needs one day to get it.
</p>
</div>
<p>
<img src="/image/tour/the-japanese-covered-bridge-in-hoi-an-banner.jpg" class="img-responsive" alt="The Japanese Covered Bridge in Hoi An Ancient Town." />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Hoi An - Danang - Ho Chi Minh City (1 1/2 hours by air)
</div>
<p>
Unraveling secrets from a Vietnam kitchen, you will have a hands-on <strong>cooking class at Kumquat Hoi An Restaurant</strong> with a local chef. Starting with an ingredient hunt at a local market or a garden, basic culinary skills and knowledge will be obtained by following the chefs narration instructions and experiment. This experience will be followed by a delicious lunch. <br />
Transfer to Danang for an onward flight to Ho Chi Minh City. Check-in upon arrival.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Meet our friend</span>
<p>
<strong> Kumquat Hoi An Restaurant</strong> enjoys good reputation on TripAdvisor for very personal services: cooking at the chef's house, get to know his family, take home a hand-written recipe book and have lunch together. The chef, Mr.Thanh, has served at some high-end resorts in Vietnam for years and now he's become a good friend of Asia Highlights. <br />
Please inform your chef if you have any food allergies or any special requirements for the food (such as Kosher or Muslim)
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Villa Song Saigon (Handpicked Comfort) / Hotel Des Arts Saigon Mgallery Collection(Luxury)
</p>
</div>
<p>
<img src="/image/tour/mr-thanh-the-chef-at-hoi-an-for-cooking-class.jpg" class="img-responsive" alt="Thanh the chef at Kumquat Hoi An Restaurant will teach you how to cook like a Vietnamese" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Ho Chi Minh City - Cu Chi Tunnels (1 hour by car) - Can Tho (3 hours by car)
</div>
<p>
Enjoy a fresh coffee and breakfast at your hotel before we your driver takes you south to the <strong>Cu Chi Tunnels</strong>. The site was used by the Viet Cong as a defense and shelter during wartime, and now it now plays an interesting historical place to get a touch of the history. Duck into the tunnels to see the clinic, kitchen, living rooms, and meeting rooms in the same way as they were back in the wartime.
</p>
<p>
After lunch, stretch out and take a nap in your car during the private transfer on the way to Can Tho, a lovely riverside town in the Mekong Delta. Stay overnight in Can Tho.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> Why an overnight stay in Can Tho? </span>
<p>
One night in Can Tho is necessary for two reasons: 1.The opening hour is 4am and the best time to visit is before 7am before the boats dispatch for retailing. 2. To avoid tourist boats that pour in from 7am.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Iris Can Tho Hotel (Handpicked Comfort) / Victoria Can Tho Resort &amp; Spa (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/cu-chi-tunnels.jpg" class="img-responsive" alt="Getting into the tunnel" /> <span class="photoTitle">Cu Chi Tunnels: hard to get in, harder to get out</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Can Tho - Mekong Delta - Vinh Long - Ho Chi Minh City (3 hours by car)
</div>
<p>
Waking up early in the morning at around 6am, you will visit the bustling <strong>Cai Rang Floating Market</strong>. <br />
Owning a boat is important for a Mekong family and it can be used as transportation, a house for living and, as you can will be able to see, a place to trade fresh fruits and vegetables. Aside from the fascinating views of so many boats laden with goods, you will also enjoy a boat trip near Vinh Long to some small islands. Have lunch at a local restaurant on the way back to Ho Chi Minh City.
</p>
<p>
<br />
</p>
<div class="tourPhotoL">
<img src="/image/tour/early-morning-of-the-cai-rang-floating-market.jpg" class="img-responsive" alt="Cai Rang Floating Market" /> <span class="photoTitle">Visit the floating market before 7am to get the best view</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Ho Chi Minh City Departure
</div>
<p>
After breakfast, enjoy some free time at your leisure before your private tour guide picks you up and takes you to the airport. Have a safe flight home, and we hope to see you again soon!
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> Got some extra time?</span>
<p>
An additional half-day Ho Chi Minh City trip by motorbike is available if your flight doesnt leave until 4pm.
</p>
<div class="peggiebox">
<span style="font-weight:bold;font-size:16px;color:#06C;">Extend your trip: Angkor Wat in 3 Days</span> <span style="font-size:14px;color:#666;padding-bottom:10px;">2 nights handpicked comfort | from USD298/person </span>
<p>
<img src="/image/tour/apsara-dancers-in-angkor-wat.jpg" class="img-responsive" style="float:left;padding-right:10px;padding-top:10px;" /> <br />
Easily extend your trip to Siem Reap where the Angkor Wat awes you with profound history and cultures. What to expect for an extension trip to Siem Reap: <br />
- Angkor Wat Complex including Angkor Wat, Angkor Thom, Bayon Temple and Ta Prohm <br />
- Apsara Dance Dinner Show at a nice local restaurant <br />
- Sunset view at the top of Bakheng Mountain <br />
- Private transfer and insightful guiding
</p>
</div>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<span style="font-size:25px;font-family:inherit;">Tour Map</span>
<p><img src="/image/tour/tour-map/best-of-vietnam-with-mekong-delta-trip-map-small.jpg" alt="Map of Best of Vietnam with Mekong Delta Tour" class="img-responsive" /> </p>
</div>
<div class="clearfix">
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hcmc-villa-song-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Villa Song Saigon</strong></span>
<p>
- Travelers' Choice 2016 on TripAdvisor, ranked 1/412.<br />
- By the Saigon River, 10 minutes by car to downtown. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/can-tho-iris-hotel-can-tho-deluxe-room.jpg" alt="Deluxe Room of Iris Hotel Can Tho" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Can Tho - <strong>Iris Hotel Can Tho</strong></span>
<p>
- 4/5 points by reviewers on TripAdvisor, ranked 8/45.<br />
- Nice faclity and friendly staff for a small town stay. <br />
- Great night view of the town on the sky bar and rooms are larger than most hotels in Can Tho.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,473 @@
<div id="banner">
<img src="/image/tour/lady-walking-in-hoi-an-ancient-town-banner.jpg" class="img-responsive hidden-xs" alt="Vietnamese lady in Ao Dai walking in Hoi An" /> <img src="/image/tour/lady-walking-in-hoi-an-s.jpg" class="img-responsive visible-xs" alt="Vietnamese lady in Ao Dai walking in Hoi An" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
9-Day Best of Vietnam with Mekong Delta: A life you've never seen
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Being Outwardly novel and inwardly unconventional, Vietnam keeps luring worldwide travelers with its timeless charm. Cruise Halong Bay for a starry dream, enrich your experience with a hands-on cooking class in Hoi An and visit the Mekong Delta, which opens a window to a life that you've never seen before.
</p>
<h2 class="highlights">
Highlights<!--wozhedoushiweiledingweia-->
</h2>
<div class="tourHighlights">
<ul>
<li>
Halong Bay Cruise in a less-touristy water
</li>
<li>
Walk in the Old Quarter as a local does
</li>
<li>
Meet Asia Highlights' friend Mr. Thanh at his cooking class in Hoi An
</li>
<li>
Crawl into the Cu Chi Tunnels
</li>
<li>
Early morning to visit the floating market of the Mekong Delta
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,558</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,898</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,378</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,718</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,488</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1.808</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,318</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,638</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Hanoi Arrival
</div>
<p>
Your private Vietnam tour guide and transfer driver will be waiting for you in the airport lobby when your flight lands. They will Ttransfer you to your hotel and you can ease your body and mind with a good nights sleep.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span>Hanoi
</div>
<p>
Vietnam has 55-some minority groups and each of them boasts for special cultures and lifestyles. Get a touch of the minorities' life in <strong>Vietnam Museum of Ethnology</strong>. Later, learn the mind-provoking history at <strong>Hoa Lo Prison</strong> before lunch at a local restaurant.<br />
Take an easy walk around <strong>Hoan Kiem Lake</strong> and then take a <strong>walking trip in the Old Quarter</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - What to do at night? </span>
<p>
In the mood of some music? Attend the music show at <strong>Thang Long Ca Tru Guild</strong> at the Old Quarter. Twice or three times every week, schollars and tranditional artists of Vietnamese traditional music, Ca Tru, will put on performance here for those to enjoy some music and learn to play traditional instruments.
</p>
</div>
<img src="/image/tour/hoan-kiem-lake-of-hanoi-banner.jpg" class="img-responsive" alt="Peaceful Hoan Kiem Lake of Hanoi" />
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
After a fresh coffee and breakfast, you will be on the way to <strong>Halong Bay</strong>. Listed as a UNESCO World Heritage Site, the bay has all it takes for a relaxing journey: a stunning natural landscape, catering services onboard, an outlook over a waterfront lifestyle, and interesting activities, such as kayaking, swimming, and diving.<br />
Itineraries differ for each cruise, but you will probably visit: Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as passing some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet and etc. Some cruises also include a cooking class at night and a taichi lesson in the morning.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - About the cruise:</span>
<p>
1. Theres not much to see during the drive to the bay.so Ttake a nap to recharge,ready for the upcoming journey.<br />
2. Traveling with a baby? Notify us in advance and we will put a crib in your cabin. <br />
3. All meals onboard are included except for drinks. Your privatet our guide will take you shopping for some drinks and snacks before getting onboard.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Indochina Sails (Luxury)
</p>
</div>
<p>
<img src="/image/tour/halong-bay-cruise-in-a-clear-day.jpg" class="img-responsive" alt="Cruising in Halong Bay" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Halong Bay - Hanoi (3 hours by car) - Danang - Hoi An (1 1/2 hours by air)
</div>
<p>
At about 11am, the cruise junk will take you to the pier after brunch, where your private Vietnam tour guide and driver are already in wait. Transfer to the airport and fly to Danang. <br />
Your private tour guide and driver will take you to Hoi An after arrival in Danang. Free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Hoi An
</div>
<p>
Get a touch of Hoi An by a <strong>walking tour in Hoi An Ancient Town</strong>,with your tour guide who will introduce you to the <strong>Japanese Covered Bridge</strong>, <strong>Fujian Assembly Hall (Phuc Kien)</strong> and <strong>Old House of Tan Ky</strong>, and then you will learn how to <strong>make a lantern</strong> at a traditional workshop. <br />
After dinner at a riverfront restaurant, you may visit Hoi An Night Market on your own or go for a swim at your hotel; either way will be a perfect way to call it a night.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - A new dress!</span>
<p>
Want to renew your wardrobe with a tailor-made dress in Hoi An? Your tour guide will tell you where to go.Usually,an experienced tailor only needs one day to get it.
</p>
</div>
<p>
<img src="/image/tour/the-japanese-covered-bridge-in-hoi-an-banner.jpg" class="img-responsive" alt="The Japanese Covered Bridge in Hoi An Ancient Town." />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Hoi An - Danang - Ho Chi Minh City (1 1/2 hours by air)
</div>
<p>
Unraveling secrets from a Vietnam kitchen, you will have a hands-on <strong>cooking class at Kumquat Hoi An Restaurant</strong> with a local chef. Starting with an ingredient hunt at a local market or a garden, basic culinary skills and knowledge will be obtained by following the chefs narration instructions and experiment. This experience will be followed by a delicious lunch. <br />
Transfer to Danang for an onward flight to Ho Chi Minh City. Check-in upon arrival.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Meet our friend</span>
<p>
<strong> Kumquat Hoi An Restaurant</strong> enjoys good reputation on TripAdvisor for very personal services: cooking at the chef's house, get to know his family, take home a hand-written recipe book and have lunch together. The chef, Mr.Thanh, has served at some high-end resorts in Vietnam for years and now he's become a good friend of Asia Highlights. <br />
Please inform your chef if you have any food allergies or any special requirements for the food (such as Kosher or Muslim)
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Villa Song Saigon (Handpicked Comfort) / Hotel Des Arts Saigon Mgallery Collection(Luxury)
</p>
</div>
<p>
<img src="/image/tour/mr-thanh-the-chef-at-hoi-an-for-cooking-class.jpg" class="img-responsive" alt="Thanh the chef at Kumquat Hoi An Restaurant will teach you how to cook like a Vietnamese" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Ho Chi Minh City - Cu Chi Tunnels (1 hour by car) - Can Tho (3 hours by car)
</div>
<p>
Enjoy a fresh coffee and breakfast at your hotel before we your driver takes you south to the <strong>Cu Chi Tunnels</strong>. The site was used by the Viet Cong as a defense and shelter during wartime, and now it now plays an interesting historical place to get a touch of the history. Duck into the tunnels to see the clinic, kitchen, living rooms, and meeting rooms in the same way as they were back in the wartime.
</p>
<p>
After lunch, stretch out and take a nap in your car during the private transfer on the way to Can Tho, a lovely riverside town in the Mekong Delta. Stay overnight in Can Tho.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> Why an overnight stay in Can Tho? </span>
<p>
It is possible to do the Mekong trip within one day from Ho Chi Minh City if you just want a simple overviewof the region. However, going to the floating market in the early morning, before 8am when the waters can be jammed with tourist boats, is an exceptional experience. And a good nights sleep in a nice resort can definitely make you feel energized to do this.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Iris Can Tho Hotel (Handpicked Comfort) / Victoria Can Tho Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Can Tho - Mekong Delta - Vinh Long - Ho Chi Minh City (3 hours by car)
</div>
<p>
Waking up early in the morning at around 6am, you will visit the bustling <strong>Cai Rang Floating Market</strong>. <br />
Owning a boat is important for a Mekong family and it can be used as transportation, a house for living and, as you can will be able to see, a place to trade fresh fruits and vegetables. Aside from the fascinating views of so many boats laden with goods, you will also enjoy a boat trip near Vinh Long to some small islands. Have lunch at a local restaurant on the way back to Ho Chi Minh City.
</p>
<p>
<br />
</p>
<p>
<img src="/image/tour/mekong-river-vendor-boat-banner.jpg" class="img-responsive" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Ho Chi Minh City Departure
</div>
<p>
After breakfast, enjoy some free time at your leisure before your private tour guide picks you up and takes you to the airport. Have a safe flight home, and we hope to see you again soon!
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> Got some extra time?</span>
<p>
An additional half-day Ho Chi Minh City trip by motorbike is available if your flight doesnt leave until 4pm.
</p>
<div class="peggiebox">
<span style="font-weight:bold;font-size:16px; color:#06C;">Extend your trip: Angkor Wat in 3 Days</span>
<span style="font-size:14px; color:#666; padding-bottom:10px;">2 nights handpicked comfort | from USD298/person </span>
<p>
<img src="/image/tour/apsara-dancers-in-angkor-wat.jpg" class="img-responsive" style="float:left; padding-right:10px;padding-top:10px;" /> <br />
Easily extend your trip to Siem Reap where the Angkor Wat awes you with profound history and cultures. What to expect for an extension trip to Siem Reap: <br />
- Angkor Wat Complex including Angkor Wat, Angkor Thom, Bayon Temple and Ta Prohm <br />
- Apsara Dance Dinner Show at a nice local restaurant <br />
- Sunset view at the top of Bakheng Mountain <br />
- Private transfer and insightful guiding <br />
</p>
</div>
</div>
</div>
<div class="clearfix">
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hcmc-villa-song-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Villa Song Saigon</strong></span>
<p>
- Travelers' Choice 2016 on TripAdvisor, ranked 1/412.<br />
- By the Saigon River, 10 minutes by car to downtown. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/can-tho-iris-hotel-can-tho-deluxe-room.jpg" alt="Deluxe Room of Iris Hotel Can Tho" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Can Tho - <strong>Iris Hotel Can Tho</strong></span>
<p>
- 4/5 points by reviewers on TripAdvisor, ranked 8/45.<br />
- Nice faclity and friendly staff for a small town stay. <br />
- Great night view of the town on the sky bar and rooms are larger than most hotels in Can Tho.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 9 days (approx.)
</li>
<li>
Tour Code:AH-1
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">1,488</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-1" type="hidden" /> <input name="cli_days" id="cli_days" value="9" type="hidden" /> <input name="destinations" id="destinations" value="Hanoi, Halong Bay, Danang, Hoi An, Ho Chi Minh City, Can Tho, Vinh Long, Mekong Delta" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,482 @@
<div id="banner">
<img src="/image/tour/fish-farmers-on-the-beach-of-phu-quoc-banner.jpg" class="img-responsive hidden-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" /> <img src="/image/tour/fish-farmers-on-the-beach-o.jpg" class="img-responsive visible-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
15-Day Vietnam Exploration with Beach Free Days: See with your own eyes
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Exploring Phong Nha Ke Bang National Park, hunting for local snacks in the Old Quarter of Hanoi, walking into Tha Om the formerly-royal mansion in Hue, whizzing through narrow streets on a motorbike in Ho Chi Minh City and relaxing on the white sandy beach of Pho Quoc Island. Vietnam is great for exploration, and you being there is the only key to ignite an experience to remember.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
The Old Quarter by rickshaw, try out oddly-looking local eats in Hanoi
</li>
<li>
Dining in an ancient-style house restaurant and take a visit a a formerly-royal private mansion with its owner in Hue
</li>
<li>
2 days trekking in Phong Nha National Park with a brave heart
</li>
<li>
Motorbike tour in Ho Chi Minh City to some hidden alleys and markets
</li>
<li>
Kick back on the sandy beach of Phu Quoc Island
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,778</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,148</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,398</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,708</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,638</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,998</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,278</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,578</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final comfirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 1</span>Hanoi Arrival</div>
<p>Your Vietnam exploration tour starts as your international flight lands in Hanoi. Your private tour guide and driver will soon have you all in the comfort in of a your hotel room. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Before Vietnam: </span>
<p> 1. Getting into Vietnam: you may connect your international flights at Bangkok or Hong Kong for better airfares. <br />
2. Vietnam is just one part of your Asia travel? Entrust your entire trip with us and enjoy better services.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 2</span> Hanoi</div>
<p>Let's get to know about Hanoi. The <strong>Vietnam Museum of Ethnology</strong> will offer a good prespective of minority cultures.<strong>Ho Chi Minh Presidential Palace Historical Site</strong> gives you a better understanding of Uncle Ho and his life. <br /> After lunch, you will go for a <strong>Rickshaw Ride in the Old Quarter with local eats</strong>. The trip starts from a hidden coffee stall famous for the Egg Coffee, get to the Beer Corner for a cold beer and continue to Hang Bong Street where you will try out some local snacks. Getting around the <strong>Hoan Kiem Lake</strong> on rickshaw for pleasent views of the city life. Transfer back to hotel after the trip. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Yum yum: </span>
<p> Your private tour guide will offer some authentic and clean choices for this foodie hunt. Please let him/her know ahead of time if you have any special requirments (such as allergies or non-pork).</p>
</div>
<p><img src="/image/tour/hanoi-street-food.jpg" class="img-responsive" alt="Try out Hanoi's street food"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)</div>
<p>You will set off to Halong Bay right after your breakfast. The drive will be about 3 hours with a changing view from city to countryside. Arrive at the pier and board your <strong>Halong Bay cruise</strong>. <br />
In this 2-day-and-1-night cruise, you will probably see Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Isletand etc.</p>
<div class="peggiebox" style="padding-right:10px; ">
<span style="font-weight:bold; font-size:14px;">About the cruise: </span>
<p>1. Meals onboard are mostly seafood and simple vegetable dishes. Please make a request beforehand if you have any allergies. <br />
2. Drinks and wine are not inclusive on the cruise. You may want to do some light shopping the night before or on the way to the bay.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night on Aphrodite Cruise (Handpicked Comfort) / Emeraude Classic Cruise (Luxury)</p>
</div>
<p><img src="/image/tour/halong-bay-landscape.jpg" class="img-responsive" alt="Halong Bay in a clear day"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 4</span> Halong Bay - Hanoi (3 hours by car) - Hue (1 hour by air) </div>
<p>The cruise will end at about noon after a fresh brunch. Meet your tour guide and driver again at the pier and transfer to Hanoi Airport for the flight to Hue.<br />
<p>Check in and have the rest of today free at leisure. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>3 night at Hotel Saigon Morin (Handpicked Comfort) / Pilgrimage Village Boutique Resort & Spa (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 5</span> Hue </div>
<p>Yesterday's imperial city and today's ancient town, Hue silently draws you into the history. This morning, you will visit the <strong>Imperial City</strong> and the <strong>Royal Tomb of King Tu Duc</strong>.<br />
Your lunch will be served in <strong>Ancient House Restaurant</strong>. The restaurant itself showcases the imperial style decoration and widely known for its nice food. Later, we will walk into another ancient house, <strong>Tha Om Garden House</strong>. This house used to be a royal mansion and now it belongs to Mr.Vinh. He will walk you around the garden with some interesting stories to tell.</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 6</span> Hue - Dong Hoi (4 hours by car) </div>
<p>After breakfast, your private tour guide and driver will take you to Quang Binh that blessed by God with forests, seas, rivers and a stunning coastline. On the way, you will visit many important sights that have great influence during the American Wars such as the <strong>DMZ (Demilitarized Zone)</strong>, <strong>Ben Hai River</strong> and <strong>Hien Luong Bridge</strong>. Then head to Dong Hoi to enjoy lunch at a local restaurant. <br />
In the afternoon, take a boat on the Son River to visit <strong>Phong Nha ("Wet Cave")</strong>, a World Heritage Site by UNESCO in 2003 and <strong>Tien Son ("Dry Cave")</strong>. Trekking in the national park itself can be an ideal way to free your mind.</p>
<div class="peggiebox" style=" padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Thank you!</span>
<p>Boater of the national park are all locals and your tour guide will tip them on your behalf as a gesture of gratitude. (Tips are included in the tour) </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night at Muong Thanh Luxury Nhat Le Hotel</p>
</div>
<p><img src="/image/tour/taking-a-boat-trip-into-the-cave.jpg" class="img-responsive" alt="Take a boat trip into the cave"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 7</span>Dong Hoi - Hue (4 hours by car)</div>
<p> You will start your tour in the morning by a <strong>kayaking trip on the Chay River</strong>.<br />
Continue your trip to visit the longest dry cave in Asia - <strong>Thien Duong ("Paradise Cave")</strong>. After that, you will be transferred back to Quang Binh and have lunch on the way back to Hue.</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 8</span>Hue - Hoi An (3 1/2 hours by car) </div>
<p>After breakfast, hit the road to Hoi An. We will stop for some nice photos at <strong>Hai Van Pass</strong> and have lunch.<br />
Arrive in Hoi An in the afternoon and free time at leisure.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 night at Essence Hoi An Hotel & Spa (Handpicked Comfort) / Palm Garden Beach Resort & Spa(Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 9</span>Hoi An</div>
<p> Discover Hoi An's untold stories with a historic highlights tour: the <strong>Japanese Covered Bridge</strong>, <strong>Old House of Tan Ky</strong> and <strong>Fukian Assembly Hall</strong>. Have lunch at a nicely-set restaurant.<br />
<p>Roll up your sleeves for some hands-on experience at a local <strong>lantern workshop</strong> to learn to make lanterns.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Full Moon:</span>
<p> - Hoi An Ancient Town celebrates the monthly full-moon date with glittering lanterns and soft traditional music. Power will be cut for one hour and the entire town will be in the gentle light of the moon.</p>
</div>
<p><img src="/image/tour/hoi-an-at-night.jpg" class="img-responsive" alt="Hoi An Ancient Town at night"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 10</span>Hoi An Danang (30min by car) Ho Chi Minh City (1 1/2 hours by air) Cu Chi Tunnels (2 hours by car)</div>
<p>We would like to introduce you Mr.Thanh, who used to be a chef at some high-end resorts in Vietenam and now he finds new passion in training others to be top chefs. This morning, you will have a <strong>cooking class</strong> at his own house. <br />
You will have lunch with Mr. Thanh and then you will be taken to the airport in Danang and fly to Ho Chi Minh City. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Going with Mr.Thanh:</span>
<p>1. Depending on the size of your group, Mr.Thanh will come and pick you up at the hotel and go for a market visit, followed by an easy cycling trip to his own house in a vegetable village. <br />
2. Taking this class with your kids? Your kids can hang out with Thanh's three sweet kids if they are not in the mood of chopping and cooking. Mr.Thanh also has some easy dishes if they are up to the task.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Eden Star Saigon Hotel (Handpicked Comfort) / Grand Hotel Saigon(Luxury)</p>
</div>
<p><img src="/image/tour/thanh-at-kumquat-in-hoi-an.jpg" class="img-responsive" alt="Mr.Thanh loves to share"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 11</span>Ho Chi Minh City </div>
<p>Those roaring scooters might seem scary when you are trying to cross the streets yet riding one can be a completely different experience. After breakfast, hop on your tour guide's own motorbike to hit the city highlights: the <strong>Reunification Palace</strong>, <strong>Notre Dame Cathedral</strong>,and the <strong>Old Central Post Office</strong>, <strong>Chinatown</strong> and <strong>Binh Tay Market</strong> just to name a few. <br />
Transfer back to your hotel after lunch. </p>
<div class="peggiebox" style=" padding-right:10px;">
<span style="pfont-weight:bold; font-size:14px;">Motorbike tour:</span>
<p>1. Safety is the biggest issue. You will be wearing a helmet during the Vespa ride. The ride will be at an average speed of 30 km/h. If you are traveling with young children under 15, wed suggest something less heart-racing, such as a cycling trip or a rickshaw ride.<br />
2. You will just have a quick exterior visit at each attraction.
3. One motorbike only takes one passenger. We will rent some more according to the size of your group. We will arrange common private van visit for group of more than 5 people.</p>
</div>
<p><img src="/image/tour/notre-dame-cathedral-of-ho-chi-minh-city.jpg" class="img-responsive" alt="Notre Dame Cathedral of Ho Chi Minh City"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 12</span>Ho Chi Minh City - Cai Be (2 hours by car) - Vinh Long (1 hour by car) - Can Tho (1 hour by car) - Phu Quoc Island (50min by air)</div>
<p>The drive down to the Mekong Delta, heading to <strong>Cai Be Floating Market</strong>. Later, take <strong>small boat in Vinh Long</strong>. The trip will be mixed with small visits to a local rice paper mill and boating through the channcels to a remote village. You will have a freshly-cooked and organic lunch at an orchard with its owner. </p>
<p>Later in the afternoon, you will be taken to Can Tho. Take an evening flight to Phu Quoc Island. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">The Mekong: </span>
<p>What to bring? A pair of sunglasses, mosquito repelleant, and lots of sunblock are necessary for your trip to the Mekong Delta. </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Transfer in Phu Quoc: </span>
<p>Your tour guide will not fly to Phu Quoc Island with you. We will arrange a private transfer from your hotel in Phu Quoc upon arrival. </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>3 nights atFamiana Resort & Spa (Handpicked Comfort) / La Veranda Resort Phu Quoc(Luxury)</p>
</div>
<p><img src="/image/tour/row-a-small-boat-to-a-remote-island-in-the-mekong-delta.jpg" class="img-responsive" alt="A local takes you to a remote village through the narrow cannel"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 13 & 14</span>Phu Quoc Island</div>
<p> Have these two days free to yourself! </p>
</div>
<p><img src="/image/tour/beach-on-phu-quoc-island.jpg" class="img-responsive" alt="Relax on the beach of Phu Quoc Island"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 15</span>Phu Quoc Island - Ho Chi Minh City (1 hour by air) and Departure</div>
<p> After breakfast, your hotel will transfer you to the airport for the ongoing flight back to Ho Chi Minh City,.Cconnecting with your international flight, and you will soon be home. See you again soon! </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Connecting flight:</span>
<p> 1. We will have you flight to Ho Chi Minh City one day ahead if your departure flight leaves early than 11am. <br />
2. What's your next destination? Entrust us with your Asia travel plan and extend the nice experiences in your next steps.</p>
</div>
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hue-hotel-saigon-morin-colonial-deluxe-room.jpg" alt="Colonial Deluxe Room in Hotel Saigon Morin" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hue - <strong>Hotel Saigon Morin</strong></span>
<p>- Winner of Certificate of Excellence of TripAdvisor, ranked 21/110 of all hotels in Hue.<br />
- Centrally located, easy walk to Dong Ba Market and close to the Imperial Palace and restaurants. <br />
- Rich experience in serving high-end travelers, spacious rooms with good view of the Perfume River. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/dong-hoi-muong-thanh-luxury-nhat-le-hotel-deluxe-twin-room.jpg" alt="Deluxe Twin Room of Muong Thanh Luxury Nhat Le Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Dong Hoi - <strong> Muong Thanh Luxury Nhat Le Hotel</strong></span>
<p>- 4.5/5 points on TripAdvisor, ranked 1/18.<br />
- Great location in downtown and by the beach, ideal as a camp base. <br />
- Spacious rooms of 30m2 and up, soft beds and quiet sleep. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel & Spa</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hcmc-eden-star-saigon-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room in EdenStar Saigon Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong> EdenStar Saigon Hotel </strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranked 40/421.<br />
- Centrally located in District 1, near Benh Thanh Market. <br />
- Great rooftop swimming pool, soft beds, nice views of the city on higher floor and in-room Wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/phu-quoc-island-famiana-resort-spa-deluxe-garden-view-room.jpg" alt="Deluxe Garden View Room of Famiana Reosrt & Spa in Phu Quoc Resort Phu Quoc Island" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Phu Quoc Island - <strong>Famiana Resort & Spa </strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 11/71.<br />
- Located in Cua Lap Hamlet, away from the chaos and perfect for a peaceful holiday. <br />
- By the beach, featuring with a vast pool, great food and spacious rooms, ideal for family vacation. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="noteInfo">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 15 days (approx.)
</li>
<li>
Tour Code:AH-3
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">2,638</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-3" type="hidden" /> <input name="cli_days" id="cli_days" value="15" type="hidden" /> <input name="destinations" id="destinations" value="Hanoi, Halong Bay, Hue, Dong Hoi, Danang, Hoi An, Ho Chi Minh City, Can Tho, Mekong Delta, Phu Quoc Island" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,570 @@
<div id="banner">
<img src="/image/tour/little-house-by-rice-field-of-sapa-banner.jpg" class="img-responsive hidden-xs" alt="lush valley of Sapa, good for trekking" /> <img src="/image/tour/little-house-by-rice-field.jpg" class="img-responsive visible-xs" alt="lush valley of Sapa, good for trekking" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
13-Day Vietnam Classic Wonders with Sapa: Walking in an Idyll
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Adventure into the very soul of Vietnam, walk around the market in Sapa with local people in their festive costums, trek across the hills terraced by rice paddies, hop on a motorbike to roam about the city of Saigon and sneak into an underground tunnel used by the Viet Cong. Walking in timeless charm of Vietnam, this trip will be rewarding you an unforgettable experience.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
Trek on a less-traveled route in Sapa
</li>
<li>
Visit a local market on its busiest market date
</li>
<li>
Sit on the back of a motorbike to get familiar with Saigon
</li>
<li>
Cooking class in the imperial city of Hue
</li>
<li>
Halong Bay cruise with wide-open vistas
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-2,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Ho Chi Minh City Arrival
</div>
<p>
As your flight slowly lands in at Ho Chi Minh City Airport, your private tour guide and transfer will be waiting for you in the lobby. They will transfer you to your hotel where you will be all at ease.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Entry flight</span>
<p>
Among all the international transport hubs, wed recommend Bangkok or Hong Kong for your entry,as there are better airfares and it is easier to get around.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Parkroyal Saigon Hotel (Handpicked Comfort) / Grand Hotel Saigon (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span> Ho Chi Minh City
</div>
<p>
Ho Chi Minh City, formerly known as Saigon, has continuous energy. You will take in this city in a different way: <strong>sit on the back of your tour guide's own motorbike</strong> and roam the city. You will probably swing by and make stops at <strong>Saigon Opera House</strong>, the <strong>Post Office</strong>, <strong>Saigon Notre Dame Cathedral</strong>, <strong>Chinatown</strong> and a <strong>local market</strong>. Make stops at the sites you find interesting. <br />
After lunch at a local restaurant, you will be free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- The motorbike</span>
<p>
1. A motorbike ride is fun when you are with a local insider and, of course,be sure to wear a helmet! <br />
2. For a family with young children, we would suggest a gentle trip: a <strong>rickshaw trip</strong> in the city. The ride route is flexible and the rider can make stops at whatever places you find interesting. Make a request in advance for this option.
</p>
</div>
<p>
<img src="/image/tour/local-vespa-bikers-in-ho-chi-minh-city-banner.jpg" class="img-responsive" alt="Local motorbike riders in Ho Chi Minh City" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Ho Chi Minh City - Danang (1 1/2 hours by air) - Hoi An (40min by car)
</div>
<p>
As the Vietnam-US war is always a controversial subject, why dont you take a look into it with some close-up experiences in one of the wartime remains? After breakfast, we will drive you to the <strong>Cu Chi Tunnels</strong>, where the history will be narrated from todays prospective and you may go underground to experience what life was like for the Viet Cong during the battle. <br />
Have lunch when we finish the tour and then drive to the airport. Fly to Danang and transfer to Hoi An.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/into-the-tunnel.jpg" class="img-responsive" alt="A traveler is getting underground" /> <span class="photoTitle">Cu Chi Tunnels: You can try to get into the tunnel to see what it's like</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Hoi An
</div>
<p>
As a UNESCO World Heritage Site, Hoi An Ancient Town is just the right definition of Vietnams timeless charm. This morning, you will have some insightful visits at ofthis towns essence: the <strong>Japanese Covered Bridge</strong>, <strong>Fukian Assembly Hall</strong> and the <strong>Old House of Tan Ky</strong>.<br />
After lunch at a charity restaurant,the <strong>White Lotus Restaurant</strong>, a class will be taken on <strong>how to make lanterns</strong>. Wouldnt it be nice to take home something special?
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- White Lotus Restaurant</span>
<p>
The restaurant is wholly owned by the Australian non-government-aid organisation Project Indochina. Their major goal is to help disadvantaged children and families in Vietnam and Cambodia by offering hostipitality and language training as well as a chance to work at restaurants or hotels, like who you see at the restaurant. Get a chance to know about the young staff or chefs for the U-turns of their lives.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/sample-a-bowl-of-pho-in-hoi-an.jpg" class="img-responsive" alt="Delicious Pho of Hoi An" /> <span class="photoTitle">For any special requirements, non-spicy or non-pork, should be made beforehand</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span>Hoi An - Hue (3 1/2 hours by car)
</div>
<p>
Have the whole morning free to yourself. <br />
In the afternoon, at about 2pm, we will drive you up to Hue via Danang. We will make stop at <strong>Hai Van Pass</strong> for some great photos. Free at leisure upon arrival.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hotel Saigon Morin (Handpicked Comfort) / Pilgrimage Village Boutique Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span> Hue
</div>
<p>
In the morning, you will have a <strong>Cooking Class at Y Thao Garden House</strong> in Hue, good way to know how the kings treated themselves.<br />
Hue used to be the capital city during the Nguyen Dynasty (18021945). Take an easy tour to visit the <strong>Purple Forbidden City</strong>, a small replica of the one in Beijing, China. When you have learnt enough about the imperial life, it will be time to discover the local lifestyle at the <strong>Dong Ba Market</strong>.
</p>
<p>
<img src="/image/tour/a-gate-of-the-purple-forbidden-city-of-hue.jpg" class="img-responsive" alt="Walk into the history of Hue" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Hue - Hanoi (50min by air) - Lao Cai (8 1/2 hours by train)
</div>
<p>
Take a morning flight to Hanoi, the capital city of Vietnam.
</p>
<p>
As a preview of your upcoming trip to Sapa, you will visit the <strong>Vietnam Museum of Ethnology</strong> to learn about colorful cultures of Vietnam's minority groups. Visit <strong>Hoa Lo Prison</strong>, <strong>Hoan Kiem Lake</strong> and the <strong>Old Quarter</strong>. You will have some free time in the Old Quarter for dinner and shopping. At night you will board on the train to Lao Cai at 10pm.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Overnight train to Lao Cai</span>
<p>
The train leaves at 10pm and arrives at 6am in Lao Cai. A superior or higher level of cabin is booked for your comforts.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Orient Express Train - Soft Berth (Handpicked Comfort) / Sapa Victoria Express Train - Soft Berth(Luxury)
</p>
</div>
<p>
<img src="/image/tour/vendor-in-hanoi-with-white-daisy-banner.jpg" class="img-responsive" alt="A friendly flower vendor of Hanoi's Old Quarter" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Lao Cai - Sapa (1 hour by car)
</div>
<p>
Breaking the morning mist, you will arrive in Lao Cai at about 6am.
</p>
<p>
Take a short break and have some simple breakfast upon arrival. Later, you will be on the road to a nearby local market. Each village has their own market date, your local tour guide will pick one accordingly. The <strong>Local Market Visit</strong> will be about 4 hours, including the transfer, and it will bring you into the colorful daily life of the ethnic minority people in Sapa. At the market, you will see all kinds of odd goods, such as worns and beef skin, are on sale and families devoting themselves into an intense bargain just for a wicker hat.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Market visit in Sapa: </span>
<p>
1. Market date: Monday - Ban Theit or Phong Hai Market; Tuesday - Coc Ly or Ban Cam Market; Wednesday - Cao Son or Sin Cheng Market; Thursday - Lung Khau Nhin or Binh Lu Market; Friday - Chau or Phong Hai Market; Saturday - Can Cau , Phang Long or Tam Duong Market; Sunday - Bac Ha, Muong Hum or Muong Khuong Market. <br />
2. If you don't feel like travelling too far after a long train ride, your tour guide will firstly take you to Sapa Victoria Resort &amp; Spa for breakfast and a short break, and then check in hotel at noon. You will have the rest of day free at leisure, preparing for the trekking to come.
</p>
<span style="font-weight:bold;font-size:14px;">- About your time in Sapa, you should know:</span>
<p>
1. On the day you arrive in Sapa, some relaxing time is needed for getting ready for the upcoming trekking. <br />
2. We have chosen where you will stay based on the accessibility to the trekking route. Luxury accommodation or a hotel that goes over budget is not necessary. You can also let us know whichat hotel you have in mind, if possible.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at U Sapa Boutique Hotel &amp; Spa (Handpicked Comfort) / Sapa Victoria Resort &amp; Spa (Luxury)
</p>
</div>
<p>
<img src="/image/tour/sapa-hmong-women-going-to-the-market.jpg" class="img-responsive" alt="Hmong women going to the local market on a market date" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Sapa - Ta Van Village (6 hours at easy pace of trekking)
</div>
<p>
Breaking the path, your Sapa trekking trip is designed in a special route. After breakfast, you will start the trekking trip from Sapa Town to <strong>Giang Ta Chai Village</strong>, passing <strong>Lao Chai Village</strong> (for to see the Hmong people), <strong>Ta Van Village</strong> (for the Zay people).
</p>
<p>
You will reach Ta Van Village in the afternoon. Have a simple dinner and stay at the Victoria Sapa Homestay facility.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Good to know:</span>
<p>
1. Pack light for the trip. Your luggage will stay in the hotel in Sapa and you will only need a few things for the trek: a sturdy pair of shoes and a light backpack for your gears, a camera, and water. <br />
2. Any traveler in good physical condition will find it easy to do the trek. You can also make stops when needed.
</p>
</div>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Sapa Victoria Homestay
</p>
</div>
<p>
<img src="/image/tour/villages-at-hillfoot-in-sapa.jpg" class="img-responsive" alt="A peaceful village at hillfoot in Sapa " />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Ta Van Village Giang Ta Chai Village (3 hours at easy pace of trekking) Lao Cai (2 hours by car) Hanoi (8 1/2 hours by train)
</div>
<p>
Have breakfast before we continue to <strong>Giang Ta Chai Village</strong> at an easy pace.
</p>
<p>
Compared to Cat Cat Village or Ta Phin Village, Giang Ta Chai Village, which is quite a distance from the heart of Sapa, remains a less-touched terrain. It has undulating mountains that are laced with rice paddies, and swaying bamboo groves. The village is scattered with small thatched houses, and feature crystal clear waters weaving through the mountain creeks. Its also home to the Zao people, also known as the Red Dao, famously known for their stunning headdresses. <br />
By the afternoon, you will be transferred back to Lao Cai Train Station, where your luggage will already be waiting for you to get onboard. Take the overnight train back to Hanoi at about 9pm.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Here come the kids!</span>
<p>
Instead of candy bars, we'd suggest you give out notebooks, penciles and story books to the local children.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Orient Express Train - Soft Berth (Handpicked Comfort) / Sapa Victoria Express Train - Soft Berth(Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/red-dao-woman-in-sapa.jpg" class="img-responsive" alt="A Red Dao woman in Sapa" /> <span class="photoTitle">The Red Dao people is often recognized by their headdresses.</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
Arrive in Hanoi in the early morning and have breakfast at a hotel. Later we will drive off to Halong Bay.
</p>
<p>
Board the cruise and enjoy the relaxing journey. <br />
Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats). <br />
In the evening, the junk will harbor anchor in a less-crowded area for your sweet dreams under the stars.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- About your cruise:</span>
<p>
1. Big suitcases? No worries, your private tour guide and driver will help you get the luggage onboard at the pier. <br />
2.Meals on the cruise are basically seafood, so notifications of any seafood allergies should be made ahead of time, as well as other special requirements, such as Muslim and kosher. <br />
3. All meals onboard are inclusive except for drinks and wine. Your private tour guide will take you shopping for some snacks, fruits and drinks on the way to Halong Bay.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Paradise Luxury Cruise (Luxury)
</p>
</div>
<p>
<img src="/image/tour/halong-bay-landscape.jpg" class="img-responsive" alt="A clear day in Halong Bay" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12</span>Halong Bay - Hanoi (3 hours by car)
</div>
<p>
The cruise will reach the shore at about 11am, after a brunch. Your private tour guide and driver rwill take you back to Hanoi.<br />
Free at leisure in Hanoi.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at La Siesta Hotel &amp; Spa (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/a-small-fishing-village-in-halong-bay-banner.jpg" class="img-responsive" alt="A floating village of Halong Bay" /> <span class="photoTitle">You will have a passing-by visit at a floating village of Halong Bay</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 13</span>Hanoi Departure
</div>
<p>
After breakfast, you will have some free time in Hanoi before your flight home.
</p>
</div>
<div class="peggiebox">
<span style="font-size:25px;font-family:inherit;">Tour Map</span>
<p><img src="/image/tour/tour-map/vietnam-classic-wonders-with-sapa-trip-map-small.jpg" alt="Map of Vietnam Classic Wonders with Sapa Tour" class="img-responsive" /> </p>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/victoria-express-train.jpg" alt="Superior Cabin of the Victoria Express Train" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Parkroyal Saigon Hotel</strong></span>
<p>
- Top10 4-star hotels ranked by TripAdvisor, winner of Certificate of Excellence.<br />
- 15 minutes of driving distance from the airport and 15 minutes to the city center. <br />
- Featuring with great food, a swimming pool and nice indoor facilities, just ideal for a short stay before a long trip.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hue-hotel-saigon-morin-colonial-deluxe-room.jpg" alt="Colonial Deluxe Room in Hotel Saigon Morin" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hue - <strong>Hotel Saigon Morin</strong></span>
<p>
- Winner of Certificate of Excellence of TripAdvisor, ranked 21/110 of all hotels in Hue.<br />
- Centrally located, easy walk to Dong Ba Market and close to the Imperial Palace and restaurants. <br />
- Rich experience in serving high-end travelers, spacious rooms with good view of the Perfume River.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/lao-cai-orient-express-train.jpg" alt="2-berth cabin of Orient Express Train to Lao Cai" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Lao Cai - <strong>Orient Express Train</strong></span>
<p>
- Ranked 21/111 in all hotels in Hue, wn.<br />
- Private compartment with soft beds and great pricy. <br />
- Recommended for small groups to book the entire 4-berth cabin.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/sapa-u-sapa-boutique-hotel-spa-superior-room.jpg" alt="Superior Room of U Sapa Boutique Hotel and Spa" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Sapa Town - <strong>U Sapa Boutique Hotel &amp; Spa</strong></span>
<p>
- Ranked 2/49 of all hotels in Sapa on TripAdvisor.<br />
- Located in the heart of Sapa Town, easy to find restaurants nearby. <br />
- Rooms are larger than most hotels in Sapa, good breakfast and friendly staff.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/victoria-homestay-sapa-room.jpg" alt="Room of Victoria Sapa Homestay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ta Van Village - <strong> Victoria Sapa Homestay</strong></span>
<p>
- Recently open and run by the Victoria Brand.<br />
- In the rice fields of a village of Sapa.<br />
- In a traditional H'Mong wooden house, clean and soft beds and bathrooms.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-la-siesta-hotel-spa-superior-room.jpg" alt="Superior Room in La Siesta Hotel &amp; Spa in Hanoi" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong> La Siesta Hotel &amp; Spa </strong></span>
<p>
- Travelers' Choice 2016 by TripAdvisor, ranking 2/546.<br />
- In the Old Quarter, surrounded by numerous shops, cafes and restaurants yet with a touch of senerity. <br />
- Colonial-style deco, spacious rooms, Red Been Restaurant one of the best restaurants in Hanoi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,494 @@
<div id="banner">
<img src="/image/tour/little-house-by-rice-field-of-sapa-banner.jpg" class="img-responsive hidden-xs" alt="lush valley of Sapa, good for trekking" /> <img src="/image/tour/little-house-by-rice-field.jpg" class="img-responsive visible-xs" alt="lush valley of Sapa, good for trekking" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
13-Day Vietnam Classic Wonders with Sapa: Taking steps in an idyll
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Adventure into the very soul of Vietnam, walk around the market in Sapa with local people in their festive costums, trek across the hills terraced by rice paddies, hop on a motorbike to roam about the city of Saigon and sneak into an underground tunnel used by the Viet Cong. Taking steps into the timeless charm of Vietnam, this trip will be rewarding you an unforgettable experience.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
Trek on a less-traveled route in Sapa
</li>
<li>
Visit a local market on its busiest market date
</li>
<li>
Sit on the back of a motorbike to get familiar with Saigon
</li>
<li>
Cooking class in the imperial city of Hue
</li>
<li>
Halong Bay cruise with wide-open vistas
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,228</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,798</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,928</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,508</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,118</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,658</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$1,838</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,388</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 1</span>Ho Chi Minh City Arrival</div>
<p>As your flight slowly lands in at Ho Chi Minh City Airport, your private tour guide and transfer will be waiting for you in the lobby. They will transfer you to your hotel where you will be all at ease.</p>
<div class="peggiebox" style="padding-right:10px; ">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:14px;"> - Entry flight</span>
<p>Among all the international transport hubs, wed recommend Bangkok or Hong Kong for your entry,as there are better airfares and it is easier to get around.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Parkroyal Saigon Hotel (Handpicked Comfort) / Grand Hotel Saigon (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 2</span> Ho Chi Minh City</div>
<p>Ho Chi Minh City, formerly known as Saigon, continuous energy. You will take in this city in a different way: <strong>sit on the back of your tour guide's own motorbike</strong> and roam drivearound the city. You will probably swing by and make stops at <strong>Saigon Opera House</strong>, the <strong>Post Office</strong>, <strong>Saigon Notre Dame Cathedral</strong>, <strong>Chinatown</strong> and a <strong>local market</strong>. Make stops at the sites you find interesting. <br />
After lunch at a local restaurant, you will be free at leisure. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">- The motorbike</span>
<p>1. A motorbike ride is fun when you are with a local insider and, of course,be sure to wear a helmet! <br />
2. For a family with young children, we would suggest a gentle trip: a <strong>rickshaw trip</strong> in the city. The ride route is flexible and the rider can make stops at whatever places you find interesting. Make a request in advance for this option. </p>
</div>
<p><img src="/image/tour/local-vespa-bikers-in-ho-chi-minh-city-banner.jpg" class="img-responsive" alt="Local motorbike riders in Ho Chi Minh City"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 3</span>Ho Chi Minh City - Danang (1 1/2 hours by air) - Hoi An (40min by car)</div>
<p>As the Vietnam-US war is always a controversial subject, why dont you take a look into it with some close-up experiences in one of the wartime remains? After breakfast, we will drive you to the <strong>Cu Chi Tunnels</strong>, where the history will be narrated from todays prospective and you may go underground to experience what life was like for the Viet Cong during the battle. <br />
Have lunch when we finish the tour and then drive to the airport. Fly to Danang and transfer to Hoi An.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Essence Hoi An Hotel & Spa (Handpicked Comfort) / Palm Garden Beach Resort & Spa (Luxury)</p>
</div>
<p><img src="/image/tour/into-the-tunnel.jpg" class="img-responsive" alt="Duck into a tunnel at the Cu Chi Tunnels"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 4</span>Hoi An </div>
<p>As a UNESCO World Heritage Site, Hoi An Ancient Town is just the right definition of Vietnams timeless charm. This morning, you will have some insightful visits at ofthis towns essence: the <strong>Japanese Covered Bridge</strong>, <strong>Fukian Assembly Hall</strong> and the <strong>Old House of Tan Ky</strong>.<br />
After lunch at a charity restaurant,the <strong>White Lotus Restaurant</strong>, a class will be taken on <strong>how to make lanterns</strong>. Wouldnt it be nice to take home something special? </p>
<div class="peggiebox" style="padding-right:10px; ">
<span style="font-weight:bold; font-size:14px;">- White Lotus Restaurant</span>
<p>The restaurant is wholly owned by the Australian non-government-aid organisation Project Indochina. Their major goal is to help disadvantaged children and families in Vietnam and Cambodia by offering hostipitality and language training as well as a chance to work at restaurants or hotels, like who you see at the restaurant. Get a chance to know about these young waitresses or chefs for the U-turns of their lives.</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 5</span>Hoi An - Hue (3 1/2 hours by car)</div>
<p>Have the whole morning free to yourself. <br />
In the afternoon, at about 2pm, we will drive you up to Hue via Danang. We will make stop at <strong>Hai Van Pass</strong> for some great photos. Free at leisure upon arrival. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Hotel Saigon Morin (Handpicked Comfort) / Pilgrimage Village Boutique Resort & Spa (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 6</span> Hue</div>
<p>In the morning, you will have a <strong>Cooking Class at Y Thao Garden House</strong> in Hue, good way to know how the kings treated themselves.<br />
Hue used to be the capital city during the Nguyen Dynasty (18021945). Take an easy tour to visit the <strong>Purple Forbidden City</strong>, a small replica of the one in Beijing, China. When you have learnt enough about the imperial life, it will be time to discover the local lifestyle at the <strong>Dong Ba Market</strong>.</p>
<p><img src="/image/tour/a-gate-of-the-purple-forbidden-city-of-hue.jpg" class="img-responsive" alt="Walk into the history of Hue"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 7</span>Hue - Hanoi (50min by air) - Lao Cai (8 1/2 hours by train) </div>
<p>Take a morning flight to Hanoi, the capital city of Vietnam. </p>
<p>As a preview of your upcoming trip to Sapa, you will visit the <strong>Vietnam Museum of Ethnology</strong> to learn about colorful cultures of Vietnam's minority groups. Visit <strong>Hoa Lo Prison</strong>, <strong>Hoan Kiem Lake</strong> and the <strong>Old Quarter</strong>. You will have some free time in the Old Quarter for dinner and shopping. At night you will board on the train to Lao Cai at 10pm.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">- Overnight train to Lao Cai</span>
<p> The train leaves at 10pm and arrives at 6am in Lao Cai. A superior or higher level of cabin is booked for your comforts.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night on Orient Express Train - Soft Berth (Handpicked Comfort) / Sapa Victoria Express Train - Soft Berth(Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 8</span>Lao Cai - Sapa (1 hour by car)</div>
<p>Breaking the morning mist, you will arrive in Lao Cai at about 6am. <br />
<p>Take a short break and have some simple breakfast upon arrival. Later, you will be on the road to a nearby local market. Each village has their own market date, your local tour guide will pick on accordingly. The <strong>Local Market Visit</strong> will be about 4 hours, including the transfer, and it will bring you into the colorful daily life of the minority people in Sapa. At the market, you will see all kinds of odd goods, such as worns and beef skin, are on sale and families devoting themselves into an intense bargain just for a wicker hat. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">- Market visit in Sapa: </span>
<p>1. Market date: Monday - Ban Theit or Phong Hai Market; Tuesday - Coc Ly or Ban Cam Market; Wednesday - Cao Son or Sin Cheng Market; Thursday - Lung Khau Nhin or Binh Lu Market; Friday - Chau or Phong Hai Market; Saturday - Can Cau , Phang Long or Tam Duong Market; Sunday - Bac Ha, Muong Hum or Muong Khuong Market. <br />
2. If you don't feel like travelling too far after a long train ride, your tour guide will firstly take you to Sapa Victoria Resort & Spa for breakfast and a short break, and then check in hotel at noon. You will have the rest of day free at leisure, preparing for the trekking to come. </p>
<span style="font-weight:bold; font-size:14px;">- About your time in Sapa, you should know:</span>
<p>1.When does the trekking start? For Onthe day that you arrive in Sapa from an overnight train, wed suggest that you take some time to relax, in order to recharge,ready he trekking. Therefore, no trekking or excursionsis arerecommended for the first day in Sapa. Just enjoy some cool air and relax. <br />
2. The star ranking of hotels doesn't mean anything in Sapa since resource is limited. We have chosen where you will stay based on the accessibility to the trekking route, and the nice facilities,possibly with a touch of Sapa style. Luxury accommodation or a hotel that goes over budget is not necessary. You can also let us know whichat hotel you have in mind, if possible.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night at U Sapa Boutique Hotel & Spa (Handpicked Comfort) / Sapa Victoria Resort & Spa (Luxury)</p>
</div>
<p><img src="/image/tour/sapa-hmong-women-going-to-the-market.jpg" class="img-responsive" alt="Hmong women going to the local market on a market date"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 9</span>Sapa - Ta Van Village (6 hours at easy pace of trekking)</div>
<p>Breaking the path, your Sapa trekking trip is designed into take a special route. After breakfast, you will start the trekking trip from Sapa Town to <strong>Giang Ta Chai Village</strong>, passing <strong>Lao Chai Village</strong> (for to see theHmong people), <strong>Ta Van Village</strong> (for the Zay people). <br/>
<p>We Youwill reach Ta Van Village in the afternoon. Have a simple dinner and stay at the Victoria Sapa Homestay facility.</p>
<div class="peggiebox" style=" padding-right:10px; ">
<span style="font-weight:bold; font-size:14px;">- Good to know:</span>
<p>1. Pack light for the trip. Your luggage will stay in the hotel in Sapa asnd you will only need a few things for the trek: a sturdy pair of shoes and a light backpack for your gears, a camera, and water. <br />
2. Any traveler in good physical condition will find it easy to do the trek. You can also make stops when needed.</p>
</div>
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night at Sapa Victoria Homestay</p>
</div>
<p><img src="/image/tour/villages-at-hillfoot-in-sapa.jpg" class="img-responsive" alt="A peaceful village at hillfoot in Sapa "></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 10</span>Ta Van Village Giang Ta Chai Village (3 hours at easy pace of trekking) Lao Cai (2 hours by car) Hanoi (8 1/2 hours by train)</div>
<p>Have breakfast before we continue to <strong>Giang Ta Chai Village</strong> at an easy pace. </p>
<p>Compared to Cat Cat Village or Ta Phin Village, Giang Ta Chai Village, which is quite a distance from the heart of Sapa, remains a less-touched terrain. It has undulating mountains that are laced with rice paddies,and swaying bamboo groves, are scattered with small thatched houses, and feature crystal clear waters weaving through the mountain creeks. Its also home to the Zao people, also known as the Red Dao, famously known for their stunning headdresses. <br />
By the afternoon, you will be transferred back to Lao Cai Train Station, where your luggage will already be waiting for you to get onboard. Take the overnight train back to Hanoi at about 9pm. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">- Here come the kids!</span>
<p>Instead of candy bars, we'd suggest you give out notebooks, penciles and story books to the local children.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night on Orient Express Train - Soft Berth (Handpicked Comfort) / Sapa Victoria Express Train - Soft Berth(Luxury)</p>
</div>
<p><img src="/image/tour/red-dao-woman-in-sapa.jpg" class="img-responsive" alt="Meet a Red Dao woman in Giang Ta Chai Village of Sapa"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 11</span>Hanoi - Halong Bay (3 hours by car)</div>
<p>Arrive in Hanoi in the early morning and get refreshed up in a hotel and have breakfast. Later we will drive off to Halong Bay. </p>
<p>Board the cruise and enjoy the relaxing journey. <br />
Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats). <br />
In the evening, the junk will harbor anchor in a less-crowded area for your sweet dreams under the stars.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">About your cruise:</span>
<p>1. Big suitcases? No worries, your private tour guide and driver will help you get the luggage onboard at the pier. <br />
2.Meals on the cruise are basically seafood, so notifications of any seafood allergies should be made ahead of time, as well as other special requirements, such as Muslim and kosher. <br />
3. All meals onboard are inclusive except for drinks and wine. Your private tour guide will take you shopping for some snacks, fruits and drinks on the way to Halong Bay.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night on Aphordite Cruise (Handpicked Comfort) / Paradise Luxury Cruise (Luxury)</p>
</div>
<p><img src="/image/tour/halong-bay-landscape.jpg" class="img-responsive" alt="A clear day in Halong Bay"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 12</span>Halong Bay - Hanoi (3 hours by car)</div>
<p>The cruise will reach the shore at about 11am, after a brunch. Your private tour guide and driver rwill take you back to Hanoi.<br />
Free at leisure in Hanoi.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night at La Siesta Hotel & Spa (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)</p>
</div>
<p><img src="/image/tour/a-small-fishing-village-in-halong-bay-banner.jpg" class="img-responsive" alt="Visit a small fishing village of Halong Bay"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 13</span>Hanoi Departure</div>
<p> After breakfast, you will have some free time in Hanoi before your flight home.</p>
</div>
<div class="peggiebox">
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/victoria-express-train.jpg" alt="Superior Cabin of the Victoria Express Train" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Parkroyal Saigon Hotel</strong></span>
<p>- Top10 4-star hotels ranked by TripAdvisor, winner of Certificate of Excellence.<br />
- 15 minutes of driving distance from the airport and 15 minutes to the city center. <br />
- Featuring with great food, a swimming pool and nice indoor facilities, just ideal for a short stay before a long trip. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel & Spa</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hue-hotel-saigon-morin-colonial-deluxe-room.jpg" alt="Colonial Deluxe Room in Hotel Saigon Morin" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hue - <strong>Hotel Saigon Morin</strong></span>
<p>- Winner of Certificate of Excellence of TripAdvisor, ranked 21/110 of all hotels in Hue.<br />
- Centrally located, easy walk to Dong Ba Market and close to the Imperial Palace and restaurants. <br />
- Rich experience in serving high-end travelers, spacious rooms with good view of the Perfume River. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/lao-cai-orient-express-train.jpg" alt="2-berth cabin of Orient Express Train to Lao Cai" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Lao Cai - <strong>Orient Express Train</strong></span>
<p>- Ranked 21/111 in all hotels in Hue, wn.<br />
- Private compartment with soft beds and great pricy. <br />
- Recommended for small groups to book the entire 4-berth cabin. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/sapa-u-sapa-boutique-hotel-spa-superior-room.jpg" alt="Superior Room of U Sapa Boutique Hotel and Spa" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Sapa Town - <strong>U Sapa Boutique Hotel & Spa</strong></span>
<p>- Ranked 2/49 of all hotels in Sapa on TripAdvisor.<br />
- Located in the heart of Sapa Town, easy to find restaurants nearby. <br />
- Rooms are larger than most hotels in Sapa, good breakfast and friendly staff. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/victoria-homestay-sapa-room.jpg" alt="Room of Victoria Sapa Homestay" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ta Van Village - <strong> Victoria Sapa Homestay</strong></span>
<p>- Recently open and run by the Victoria Brand.<br />
- In the rice fields of a village of Sapa.<br />
- In a traditional H'Mong wooden house, clean and soft beds and bathrooms.</p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hanoi-la-siesta-hotel-spa-superior-room.jpg" alt="Superior Room in La Siesta Hotel & Spa in Hanoi" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong> La Siesta Hotel & Spa </strong></span>
<p>- Travelers' Choice 2016 by TripAdvisor, ranking 2/546.<br />
- In the Old Quarter, surrounded by numerous shops, cafes and restaurants yet with a touch of senerity. <br />
- Colonial-style deco, spacious rooms, Red Been Restaurant one of the best restaurants in Hanoi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 13 days (approx.)
</li>
<li>
Tour Code:AH-2
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">2,118</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-2" type="hidden" /> <input name="cli_days" id="cli_days" value="13" type="hidden" /> <input name="destinations" id="destinations" value="Ho Chi Minh City, Danang, Hoi An, Hue, Hanoi, Lao Cai, Sapa, Halong Bay" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,554 @@
<div id="banner">
<img src="/image/tour/fish-farmers-on-the-beach-of-phu-quoc-banner.jpg" class="img-responsive hidden-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" /> <img src="/image/tour/fish-farmers-on-the-beach-o.jpg" class="img-responsive visible-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
15-Day Vietnam Exploration with Beach Free Days: Every Sense Comes Alive
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Exploring Phong Nha Ke Bang National Park, hunting for local snacks in the Old Quarter of Hanoi, walking into Tha Om the formerly-royal mansion in Hue, whizzing through narrow streets on a motorbike in Ho Chi Minh City and relaxing on the white sandy beach of Pho Quoc Island. Vietnam is great for exploration, and you being there is the only key to ignite an experience to remember.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
The Old Quarter by rickshaw, try out oddly-looking local eats in Hanoi
</li>
<li>
Dining in an ancient-style house restaurant and take a visit a a formerly-royal private mansion with its owner in Hue
</li>
<li>
2 days trekking in Phong Nha National Park with a brave heart
</li>
<li>
Motorbike tour in Ho Chi Minh City to some hidden alleys and markets
</li>
<li>
Kick back on the sandy beach of Phu Quoc Island
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-3,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final comfirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Hanoi Arrival
</div>
<p>
Your Vietnam exploration tour starts as your international flight lands in Hanoi. Your private tour guide and driver will soon have you all in the comfort in of a hotel room.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Before Vietnam: </span>
<p>
1. Getting into Vietnam: you may connect the international flights at Bangkok or Hong Kong for better airfares. <br />
2. Vietnam is just one part of your Asia travel? Entrust your entire trip with us and enjoy better services.
3.Visa-on-arrival: apply for visa-on-arrival at Hanoi's airport with our pre-offered approval letter.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
<p>
<img src="/image/tour/local-girls-riding-bike-in-hanoi.jpg" class="img-responsive" alt="Two local girls riding a bike in Hanoi" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span> Hanoi
</div>
<p>
Let's get to know about Hanoi. The <strong>Vietnam Museum of Ethnology</strong> will offer a good prespective of ethnic minority cultures.<strong>Ho Chi Minh Presidential Palace Historical Site</strong> gives you a better understanding of Uncle Ho and his life. <br />
After lunch, you will go for a <strong>Rickshaw Ride in the Old Quarter with local eats</strong>. The trip starts from a hidden coffee stall famous for the Egg Coffee, get to the Beer Corner for a cold beer and continue to Hang Bong Street where you will try out some local snacks. Getting around the <strong>Hoan Kiem Lake</strong> for pleasent views of the city life. Transfer back to hotel after the trip.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Yum yum: </span>
<p>
Your private tour guide will offer some authentic and clean choices for this foodie hunt. Please let him/her know ahead of time if you have any special requirments (such as allergies or non-pork).
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/hanoi-street-food.jpg" class="img-responsive" alt="Street food of Hanoi" /> <span class="photoTitle">Sweet tooth or meat-eater? Tell your tour guide what you feel like having.</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
You will set off to Halong Bay right after your breakfast. The drive will be about 3 hours with a changing view from city to countryside. Arrive at the pier and board your <strong>Halong Bay cruise</strong>. <br />
In this 2-day-and-1-night cruise, you will probably see Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Isletand etc.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- About the cruise: </span>
<p>
1. Meals onboard are mostly seafood and simple vegetable dishes. Please make a request beforehand if you have any allergies. <br />
2. Drinks and wine are not inclusive on the cruise. You may want to do some light shopping the night before or on the way to the bay.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Emeraude Classic Cruise (Luxury)
</p>
</div>
<p>
<img src="/image/tour/kayaking-in-the-beautiful-halong-bay.jpg" class="img-responsive" alt="Enjoy kayaking in Halong Bay" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span> Halong Bay - Hanoi (3 hours by car) - Hue (1 hour by air)
</div>
<p>
The cruise will end at about noon after a fresh brunch. Meet your tour guide and driver again at the pier and transfer to Hanoi Airport for the flight to Hue.
</p>
<p>
Check in and have the rest of today free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 night at Hotel Saigon Morin (Handpicked Comfort) / Pilgrimage Village Boutique Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Hue
</div>
<p>
Yesterday's imperial city and today's ancient town, Hue silently draws you into the history. This morning, you will visit the <strong>Imperial City</strong> and the <strong>Royal Tomb of King Tu Duc</strong>.<br />
Your lunch will be served in <strong>Ancient House Restaurant</strong>. The restaurant itself showcases the imperial style decoration and widely known for its nice food. Later, we will walk into another ancient house, <strong>Tha Om Garden House</strong>. This house used to be a royal mansion and now it belongs to Mr.Vinh. He will walk you around the garden with some interesting stories to tell.
</p>
<p>
<img src="/image/tour/motorbike-rider-at-the-city-moat-of-hue.jpg" class="img-responsive" alt="The maot of the ancient city of Hue" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span> Hue - Dong Hoi (4 hours by car)
</div>
<p>
After breakfast, your private tour guide and driver will take you to Quang Binh, a place blessed by God with forests, seas, rivers and a stunning coastline. On the way, you will visit many important sights that have great influence during the American Wars such as the <strong>DMZ (Demilitarized Zone)</strong>, <strong>Ben Hai River</strong> and <strong>Hien Luong Bridge</strong>. Then head to Dong Hoi to enjoy lunch at a local restaurant. <br />
In the afternoon, take a boat on the Son River to visit <strong>Phong Nha ("Wet Cave")</strong>, a World Heritage Site by UNESCO in 2003 and <strong>Tien Son ("Dry Cave")</strong>. Trekking in the national park itself can be an ideal way to free your mind.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Thank you!</span>
<p>
Boater of the national park are all locals and your tour guide will tip them on your behalf as a gesture of gratitude. (Tips are included in the tour)
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Muong Thanh Luxury Nhat Le Hotel
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/taking-a-boat-trip-into-the-cave.jpg" class="img-responsive" alt="Row a boat to the cave" /> <span class="photoTitle">You will be wearing a life jacket for this boat trip to the cave</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Dong Hoi - Hue (4 hours by car)
</div>
<p>
You will start your tour in the morning by a <strong>kayaking trip on the Chay River</strong>.<br />
Continue your trip to visit the longest dry cave in Asia - <strong>Thien Duong ("Paradise Cave")</strong>. After that, you will be transferred back to Quang Binh and have lunch on the way back to Hue.
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Hue - Hoi An (3 1/2 hours by car)
</div>
<p>
After breakfast, hit the road to Hoi An. We will stop for some nice photos at <strong>Hai Van Pass</strong> and have lunch.<br />
Arrive in Hoi An in the afternoon and free time at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 night at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa(Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Hoi An
</div>
<p>
Discover Hoi An's untold stories with a historic highlights tour: the <strong>Japanese Covered Bridge</strong>, <strong>Old House of Tan Ky</strong> and <strong>Fukian Assembly Hall</strong>. Have lunch at a nicely-set restaurant.
</p>
<p>
Roll up your sleeves for some hands-on experience at a local <strong>lantern workshop</strong> to learn to make lanterns.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Full Moon:</span>
<p>
Hoi An Ancient Town celebrates the monthly full-moon date with glittering lanterns and soft traditional music. Power will be cut for one hour and the entire town will be in the gentle light of the moon.
</p>
</div>
<p>
<img src="/image/tour/hoi-an-at-night.jpg" class="img-responsive" alt="Hoi An Ancient Town at night" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Hoi An Danang (40min by car) Ho Chi Minh City (1 1/2 hours by air)
</div>
<p>
We would like to introduce you Mr.Thanh, who used to be a chef at some high-end resorts in Vietenam and now he finds new passion in training others to be top chefs. This morning, you will have a <strong>cooking class</strong> at his own house. <br />
You will have lunch with Mr. Thanh and then you will be taken to the airport in Danang and fly to Ho Chi Minh City.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Going with Mr.Thanh:</span>
<p>
1. Depending on the size of your group, Mr.Thanh will come and pick you up at the hotel and go for a market visit, followed by an easy cycling trip to his own house in a vegetable village. <br />
2. Taking this class with your kids? Your kids can hang out with Thanh's three sweet kids if they are not in the mood of chopping and cooking. Mr.Thanh also has some easy dishes if they are up to the task.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Eden Star Saigon Hotel (Handpicked Comfort) / Grand Hotel Saigon(Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/thanh-at-kumquat-in-hoi-an.jpg" class="img-responsive" alt="Mr.Thanh at Kumquat Restaurant in Hoi An" /> <span class="photoTitle">Learn to cook with Mr.Thanh at his home kicthen</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Ho Chi Minh City
</div>
<p>
Those roaring scooters might seem scary when you are trying to cross the streets yet riding one can be a completely different experience. After breakfast, hop on your tour guide's own motorbike to hit the city highlights: the <strong>Reunification Palace</strong>, <strong>Notre Dame Cathedral</strong>,and the <strong>Old Central Post Office</strong>, <strong>Chinatown</strong> and <strong>Binh Tay Market</strong> just to name a few. <br />
Transfer back to your hotel after lunch.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;">- Motorbike tour:</span>
<p>
1. Safety is the biggest issue. You will be wearing a helmet during the Vespa ride. The ride will be at an average speed of 30 km/h. If you are traveling with young children under 15, wed suggest something less heart-racing, such as a cycling trip or a rickshaw ride.<br />
2. You will just have a quick exterior visit at each attraction.
3. One motorbike only takes one passenger. We will rent some more according to the size of your group. We will arrange common private van visit for group of more than 5 people.
</p>
</div>
<p>
<img src="/image/tour/local-riders-sleeping-on-motorbikes.jpg" class="img-responsive" alt="Locals sleep on their motorbikes" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12</span>Ho Chi Minh City - Cai Be (2 hours by car) - Vinh Long (1 hour by car) - Can Tho (1 hour by car) - Phu Quoc Island (50min by air)
</div>
<p>
Drive down to the Mekong Delta, heading to <strong>Cai Be Floating Market</strong>. Later, take <strong>a small boat in Vinh Long</strong>. The trip will be mixed with visits to a local rice paper mill and boating through the channcels to a remote village. You will have a freshly-cooked and organic lunch at an orchard with its owner.
</p>
<p>
Later in the afternoon, you will be taken to Can Tho. Take an evening flight to Phu Quoc Island.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- What to bring? </span>
<p>
A pair of sunglasses, mosquito repelleant, and lots of sunblock are necessary for your trip to the Mekong Delta.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Transfer in Phu Quoc: </span>
<p>
Your tour guide will not fly to Phu Quoc Island with you. We will arrange a private transfer from your hotel in Phu Quoc upon arrival.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights atFamiana Resort &amp; Spa (Handpicked Comfort) / La Veranda Resort Phu Quoc(Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/row-a-small-boat-to-a-remote-island-in-the-mekong-delta.jpg" class="img-responsive" alt="Take a boat trip to a small island of the Mekong Delta" /> <span class="photoTitle">One small boat can take up to 4 passengers, not including the boater</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 13 &amp; 14</span>Phu Quoc Island
</div>
<p>
Have these two days free to yourself!
</p>
</div>
<p>
<img src="/image/tour/beach-on-phu-quoc-island.jpg" class="img-responsive" alt="Relax on the beach of Phu Quoc Island" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 15</span>Phu Quoc Island - Ho Chi Minh City (1 hour by air) and Departure
</div>
<p>
After breakfast, your hotel will transfer you to the airport for the ongoing flight back to Ho Chi Minh City,.Cconnecting with your international flight, and you will soon be home. See you again soon!
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Connecting flight:</span>
<p>
1. We will have you flight to Ho Chi Minh City one day ahead if your departure flight leaves early than 11am. <br />
2. What's your next destination? Entrust us with your Asia travel plan and extend the nice experiences in your next steps.
</p>
</div>
</div>
<div class="peggiebox">
<span style="font-size:25px;font-family:inherit;">Tour Map</span>
<p><img src="/image/tour/tour-map/vietnam-exploration-tour-with-beach-free-days-trip-map-small.jpg" alt="Map of Vietnam Exploration Tour with Beach Free Days" class="img-responsive" /> </p>
</div>
<div class="clearfix">
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hue-hotel-saigon-morin-colonial-deluxe-room.jpg" alt="Colonial Deluxe Room in Hotel Saigon Morin" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hue - <strong>Hotel Saigon Morin</strong></span>
<p>
- Winner of Certificate of Excellence of TripAdvisor, ranked 21/110 of all hotels in Hue.<br />
- Centrally located, easy walk to Dong Ba Market and close to the Imperial Palace and restaurants. <br />
- Rich experience in serving high-end travelers, spacious rooms with good view of the Perfume River.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/dong-hoi-muong-thanh-luxury-nhat-le-hotel-deluxe-twin-room.jpg" alt="Deluxe Twin Room of Muong Thanh Luxury Nhat Le Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Dong Hoi - <strong> Muong Thanh Luxury Nhat Le Hotel</strong></span>
<p>
- 4.5/5 points on TripAdvisor, ranked 1/18.<br />
- Great location in downtown and by the beach, ideal as a camp base. <br />
- Spacious rooms of 30m2 and up, soft beds and quiet sleep.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hcmc-eden-star-saigon-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room in EdenStar Saigon Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong> EdenStar Saigon Hotel </strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 40/421.<br />
- Centrally located in District 1, near Benh Thanh Market. <br />
- Great rooftop swimming pool, soft beds, nice views of the city on higher floor and in-room Wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/phu-quoc-island-famiana-resort-spa-deluxe-garden-view-room.jpg" alt="Deluxe Garden View Room of Famiana Reosrt &amp; Spa in Phu Quoc Resort Phu Quoc Island" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Phu Quoc Island - <strong>Famiana Resort &amp; Spa </strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 11/71.<br />
- Located in Cua Lap Hamlet, away from the chaos and perfect for a peaceful holiday. <br />
- By the beach, featuring with a vast pool, great food and spacious rooms, ideal for family vacation.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="noteInfo">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,482 @@
<div id="banner">
<img src="/image/tour/fish-farmers-on-the-beach-of-phu-quoc-banner.jpg" class="img-responsive hidden-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" /> <img src="/image/tour/fish-farmers-on-the-beach-o.jpg" class="img-responsive visible-xs" alt="Fisher women sorting out fish on the beach of Phu Quoc Island" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
15-Day Vietnam Exploration with Beach Free Days: See with your own eyes
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Exploring Phong Nha Ke Bang National Park, hunting for local snacks in the Old Quarter of Hanoi, walking into Tha Om the formerly-royal mansion in Hue, whizzing through narrow streets on a motorbike in Ho Chi Minh City and relaxing on the white sandy beach of Pho Quoc Island. Vietnam is great for exploration, and you being there is the only key to ignite an experience to remember.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
The Old Quarter by rickshaw, try out oddly-looking local eats in Hanoi
</li>
<li>
Dining in an ancient-style house restaurant and take a visit a a formerly-royal private mansion with its owner in Hue
</li>
<li>
2 days trekking in Phong Nha National Park with a brave heart
</li>
<li>
Motorbike tour in Ho Chi Minh City to some hidden alleys and markets
</li>
<li>
Kick back on the sandy beach of Phu Quoc Island
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,778</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,148</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,398</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,708</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,638</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,998</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,278</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$2,578</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final comfirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 1</span>Hanoi Arrival</div>
<p>Your Vietnam exploration tour starts as your international flight lands in Hanoi. Your private tour guide and driver will soon have you all in the comfort in of a your hotel room. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Before Vietnam: </span>
<p> 1. Getting into Vietnam: you may connect your international flights at Bangkok or Hong Kong for better airfares. <br />
2. Vietnam is just one part of your Asia travel? Entrust your entire trip with us and enjoy better services.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 2</span> Hanoi</div>
<p>Let's get to know about Hanoi. The <strong>Vietnam Museum of Ethnology</strong> will offer a good prespective of minority cultures.<strong>Ho Chi Minh Presidential Palace Historical Site</strong> gives you a better understanding of Uncle Ho and his life. <br /> After lunch, you will go for a <strong>Rickshaw Ride in the Old Quarter with local eats</strong>. The trip starts from a hidden coffee stall famous for the Egg Coffee, get to the Beer Corner for a cold beer and continue to Hang Bong Street where you will try out some local snacks. Getting around the <strong>Hoan Kiem Lake</strong> on rickshaw for pleasent views of the city life. Transfer back to hotel after the trip. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Yum yum: </span>
<p> Your private tour guide will offer some authentic and clean choices for this foodie hunt. Please let him/her know ahead of time if you have any special requirments (such as allergies or non-pork).</p>
</div>
<p><img src="/image/tour/hanoi-street-food.jpg" class="img-responsive" alt="Try out Hanoi's street food"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)</div>
<p>You will set off to Halong Bay right after your breakfast. The drive will be about 3 hours with a changing view from city to countryside. Arrive at the pier and board your <strong>Halong Bay cruise</strong>. <br />
In this 2-day-and-1-night cruise, you will probably see Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Isletand etc.</p>
<div class="peggiebox" style="padding-right:10px; ">
<span style="font-weight:bold; font-size:14px;">About the cruise: </span>
<p>1. Meals onboard are mostly seafood and simple vegetable dishes. Please make a request beforehand if you have any allergies. <br />
2. Drinks and wine are not inclusive on the cruise. You may want to do some light shopping the night before or on the way to the bay.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night on Aphrodite Cruise (Handpicked Comfort) / Emeraude Classic Cruise (Luxury)</p>
</div>
<p><img src="/image/tour/halong-bay-landscape.jpg" class="img-responsive" alt="Halong Bay in a clear day"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 4</span> Halong Bay - Hanoi (3 hours by car) - Hue (1 hour by air) </div>
<p>The cruise will end at about noon after a fresh brunch. Meet your tour guide and driver again at the pier and transfer to Hanoi Airport for the flight to Hue.<br />
<p>Check in and have the rest of today free at leisure. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>3 night at Hotel Saigon Morin (Handpicked Comfort) / Pilgrimage Village Boutique Resort & Spa (Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 5</span> Hue </div>
<p>Yesterday's imperial city and today's ancient town, Hue silently draws you into the history. This morning, you will visit the <strong>Imperial City</strong> and the <strong>Royal Tomb of King Tu Duc</strong>.<br />
Your lunch will be served in <strong>Ancient House Restaurant</strong>. The restaurant itself showcases the imperial style decoration and widely known for its nice food. Later, we will walk into another ancient house, <strong>Tha Om Garden House</strong>. This house used to be a royal mansion and now it belongs to Mr.Vinh. He will walk you around the garden with some interesting stories to tell.</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 6</span> Hue - Dong Hoi (4 hours by car) </div>
<p>After breakfast, your private tour guide and driver will take you to Quang Binh that blessed by God with forests, seas, rivers and a stunning coastline. On the way, you will visit many important sights that have great influence during the American Wars such as the <strong>DMZ (Demilitarized Zone)</strong>, <strong>Ben Hai River</strong> and <strong>Hien Luong Bridge</strong>. Then head to Dong Hoi to enjoy lunch at a local restaurant. <br />
In the afternoon, take a boat on the Son River to visit <strong>Phong Nha ("Wet Cave")</strong>, a World Heritage Site by UNESCO in 2003 and <strong>Tien Son ("Dry Cave")</strong>. Trekking in the national park itself can be an ideal way to free your mind.</p>
<div class="peggiebox" style=" padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Thank you!</span>
<p>Boater of the national park are all locals and your tour guide will tip them on your behalf as a gesture of gratitude. (Tips are included in the tour) </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>1 night at Muong Thanh Luxury Nhat Le Hotel</p>
</div>
<p><img src="/image/tour/taking-a-boat-trip-into-the-cave.jpg" class="img-responsive" alt="Take a boat trip into the cave"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 7</span>Dong Hoi - Hue (4 hours by car)</div>
<p> You will start your tour in the morning by a <strong>kayaking trip on the Chay River</strong>.<br />
Continue your trip to visit the longest dry cave in Asia - <strong>Thien Duong ("Paradise Cave")</strong>. After that, you will be transferred back to Quang Binh and have lunch on the way back to Hue.</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 8</span>Hue - Hoi An (3 1/2 hours by car) </div>
<p>After breakfast, hit the road to Hoi An. We will stop for some nice photos at <strong>Hai Van Pass</strong> and have lunch.<br />
Arrive in Hoi An in the afternoon and free time at leisure.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 night at Essence Hoi An Hotel & Spa (Handpicked Comfort) / Palm Garden Beach Resort & Spa(Luxury)</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 9</span>Hoi An</div>
<p> Discover Hoi An's untold stories with a historic highlights tour: the <strong>Japanese Covered Bridge</strong>, <strong>Old House of Tan Ky</strong> and <strong>Fukian Assembly Hall</strong>. Have lunch at a nicely-set restaurant.<br />
<p>Roll up your sleeves for some hands-on experience at a local <strong>lantern workshop</strong> to learn to make lanterns.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Full Moon:</span>
<p> - Hoi An Ancient Town celebrates the monthly full-moon date with glittering lanterns and soft traditional music. Power will be cut for one hour and the entire town will be in the gentle light of the moon.</p>
</div>
<p><img src="/image/tour/hoi-an-at-night.jpg" class="img-responsive" alt="Hoi An Ancient Town at night"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 10</span>Hoi An Danang (30min by car) Ho Chi Minh City (1 1/2 hours by air) Cu Chi Tunnels (2 hours by car)</div>
<p>We would like to introduce you Mr.Thanh, who used to be a chef at some high-end resorts in Vietenam and now he finds new passion in training others to be top chefs. This morning, you will have a <strong>cooking class</strong> at his own house. <br />
You will have lunch with Mr. Thanh and then you will be taken to the airport in Danang and fly to Ho Chi Minh City. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Going with Mr.Thanh:</span>
<p>1. Depending on the size of your group, Mr.Thanh will come and pick you up at the hotel and go for a market visit, followed by an easy cycling trip to his own house in a vegetable village. <br />
2. Taking this class with your kids? Your kids can hang out with Thanh's three sweet kids if they are not in the mood of chopping and cooking. Mr.Thanh also has some easy dishes if they are up to the task.</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>2 nights at Eden Star Saigon Hotel (Handpicked Comfort) / Grand Hotel Saigon(Luxury)</p>
</div>
<p><img src="/image/tour/thanh-at-kumquat-in-hoi-an.jpg" class="img-responsive" alt="Mr.Thanh loves to share"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 11</span>Ho Chi Minh City </div>
<p>Those roaring scooters might seem scary when you are trying to cross the streets yet riding one can be a completely different experience. After breakfast, hop on your tour guide's own motorbike to hit the city highlights: the <strong>Reunification Palace</strong>, <strong>Notre Dame Cathedral</strong>,and the <strong>Old Central Post Office</strong>, <strong>Chinatown</strong> and <strong>Binh Tay Market</strong> just to name a few. <br />
Transfer back to your hotel after lunch. </p>
<div class="peggiebox" style=" padding-right:10px;">
<span style="pfont-weight:bold; font-size:14px;">Motorbike tour:</span>
<p>1. Safety is the biggest issue. You will be wearing a helmet during the Vespa ride. The ride will be at an average speed of 30 km/h. If you are traveling with young children under 15, wed suggest something less heart-racing, such as a cycling trip or a rickshaw ride.<br />
2. You will just have a quick exterior visit at each attraction.
3. One motorbike only takes one passenger. We will rent some more according to the size of your group. We will arrange common private van visit for group of more than 5 people.</p>
</div>
<p><img src="/image/tour/notre-dame-cathedral-of-ho-chi-minh-city.jpg" class="img-responsive" alt="Notre Dame Cathedral of Ho Chi Minh City"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 12</span>Ho Chi Minh City - Cai Be (2 hours by car) - Vinh Long (1 hour by car) - Can Tho (1 hour by car) - Phu Quoc Island (50min by air)</div>
<p>The drive down to the Mekong Delta, heading to <strong>Cai Be Floating Market</strong>. Later, take <strong>small boat in Vinh Long</strong>. The trip will be mixed with small visits to a local rice paper mill and boating through the channcels to a remote village. You will have a freshly-cooked and organic lunch at an orchard with its owner. </p>
<p>Later in the afternoon, you will be taken to Can Tho. Take an evening flight to Phu Quoc Island. </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">The Mekong: </span>
<p>What to bring? A pair of sunglasses, mosquito repelleant, and lots of sunblock are necessary for your trip to the Mekong Delta. </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Transfer in Phu Quoc: </span>
<p>Your tour guide will not fly to Phu Quoc Island with you. We will arrange a private transfer from your hotel in Phu Quoc upon arrival. </p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Accommodation:</span>
<p>3 nights atFamiana Resort & Spa (Handpicked Comfort) / La Veranda Resort Phu Quoc(Luxury)</p>
</div>
<p><img src="/image/tour/row-a-small-boat-to-a-remote-island-in-the-mekong-delta.jpg" class="img-responsive" alt="A local takes you to a remote village through the narrow cannel"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 13 & 14</span>Phu Quoc Island</div>
<p> Have these two days free to yourself! </p>
</div>
<p><img src="/image/tour/beach-on-phu-quoc-island.jpg" class="img-responsive" alt="Relax on the beach of Phu Quoc Island"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 15</span>Phu Quoc Island - Ho Chi Minh City (1 hour by air) and Departure</div>
<p> After breakfast, your hotel will transfer you to the airport for the ongoing flight back to Ho Chi Minh City,.Cconnecting with your international flight, and you will soon be home. See you again soon! </p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold; font-size:14px;">Connecting flight:</span>
<p> 1. We will have you flight to Ho Chi Minh City one day ahead if your departure flight leaves early than 11am. <br />
2. What's your next destination? Entrust us with your Asia travel plan and extend the nice experiences in your next steps.</p>
</div>
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hue-hotel-saigon-morin-colonial-deluxe-room.jpg" alt="Colonial Deluxe Room in Hotel Saigon Morin" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hue - <strong>Hotel Saigon Morin</strong></span>
<p>- Winner of Certificate of Excellence of TripAdvisor, ranked 21/110 of all hotels in Hue.<br />
- Centrally located, easy walk to Dong Ba Market and close to the Imperial Palace and restaurants. <br />
- Rich experience in serving high-end travelers, spacious rooms with good view of the Perfume River. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/dong-hoi-muong-thanh-luxury-nhat-le-hotel-deluxe-twin-room.jpg" alt="Deluxe Twin Room of Muong Thanh Luxury Nhat Le Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Dong Hoi - <strong> Muong Thanh Luxury Nhat Le Hotel</strong></span>
<p>- 4.5/5 points on TripAdvisor, ranked 1/18.<br />
- Great location in downtown and by the beach, ideal as a camp base. <br />
- Spacious rooms of 30m2 and up, soft beds and quiet sleep. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel & Spa</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hcmc-eden-star-saigon-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room in EdenStar Saigon Hotel" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong> EdenStar Saigon Hotel </strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranked 40/421.<br />
- Centrally located in District 1, near Benh Thanh Market. <br />
- Great rooftop swimming pool, soft beds, nice views of the city on higher floor and in-room Wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/phu-quoc-island-famiana-resort-spa-deluxe-garden-view-room.jpg" alt="Deluxe Garden View Room of Famiana Reosrt & Spa in Phu Quoc Resort Phu Quoc Island" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Phu Quoc Island - <strong>Famiana Resort & Spa </strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 11/71.<br />
- Located in Cua Lap Hamlet, away from the chaos and perfect for a peaceful holiday. <br />
- By the beach, featuring with a vast pool, great food and spacious rooms, ideal for family vacation. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="noteInfo">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 15 days (approx.)
</li>
<li>
Tour Code:AH-3
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">2,638</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-3" type="hidden" /> <input name="cli_days" id="cli_days" value="15" type="hidden" /> <input name="destinations" id="destinations" value="Hanoi, Halong Bay, Hue, Dong Hoi, Danang, Hoi An, Ho Chi Minh City, Can Tho, Mekong Delta, Phu Quoc Island" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,598 @@
<div id="banner">
<img src="/image/tour/mutianyu-section-of-the-great-wall.jpg" class="img-responsive hidden-xs" alt="The Great Wall of China" /> <img src="/image/tour/mutianyu-section-of-the-great-wall.jpg" class="img-responsive visible-xs" alt="The Great Wall of China" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
18-Day China and Vietnam Highlights Tour: Stand in Awe
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Getting inside the Forbidden City with VIP access, meet cute pandas, hike on the Great Wall, cruise in Halong Bay, try out Vietnamese traditional dress Ao Dai in Hoi An and explore real life of the Mekong. Without a doubt, these two amazing countries will enrich your experience, not only as a traveler, also as an insider.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
VIP access to the Forbidden City with an expert and enjoy sunset view of the Forbidden City
</li>
<li>
Meet cute pandas and learn about their daily routine
</li>
<li>
Enjoy a smooth and fast bullet train ride from Beijing to Shanghai
</li>
<li>
Dress up in Ao Dai and bring home nice photos
</li>
<li>
Be a new member of a local family in Ho Chi Minh City
</li>
<li>
Free days on the beach of Nha Trang
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-4,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Beijing Arrival
</div>
<p>
When you flight lands in Beijing Capital International Airport, your private tour guide and driver will be waiting for you. It wont be hard for you to spot your tour guide as he/she will be holding a sign with your name on. Transfer to your hotel and relax for the rest of today.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Entry flight:</span>
<p>
To avoid jetlag that might drag you from the upcoming tour in China and Vietnam, wed suggest you book a flight that arrives in Beijing during daytime, preferably before 3pm as you have more time to adjust.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Sunworld Hotel(Handpicked Comfort) / Beijing Marriott Hotel City Wall (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span> Beijing
</div>
<p>
Embrace a brand new day with a fresh coffee and breakfast. Later we will take a walking tour at the <strong>Forbidden City</strong> with a Forbidden City expert. Skip the waiting line at the entrance, you will be taken straight into the imperial palace where you can see the real scene of the movie The Last Emperor and learn the stories behind every building. <br />
You will also have a nice sunset view of the Forbidden City at <strong>Jingshan Park</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Forbidden City Heritage Walk:</span>
<p>
Walking tour in the Forbidden City is one of our best-selling trips of Beijing and it offers a deeper insight into the history without wasting time in the waiting line and getting shoved by the crowds. Your tour guide is actually a nerd of the Forbidden City and for certain he/she will tell you only the things you are interested in.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/corner-tower-of-the-forbidden-city.jpg" class="img-responsive" alt="The Corner Tower of the Forbidden City" /> <span class="photoTitle">Best photo spot for the Corner Tower is on the pavement outside the Forbidden City</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Beijing
</div>
<p>
After breakfast, we will to <strong>Mutianyu Section of the Great Wall</strong>. How long is the Great Wall? Well, there is no simple answer to this question. Take a round-way cable car up the mountain range and you will have a soft hike for about half an hour. This section is more favored by westerners for stunning vistas and less crowded. Have a simple lunch after the trip and we will get back to the city in about 2 hours.
</p>
<p>
For a relaxing afternoon, we will take a visit at the <strong>Summer Palace</strong>, where the royal court used for leisure. Take a boat ride over the Kunming Lake, walk inside the <strong>Garden of Virtuous Harmony</strong> and visit <strong>Suzhou Street</strong>, which is a mini-scale replica of the city Suzhou.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">- Good to know:</span>
<p>
Call yourself a daredevil? Hold that thought until you try out the eerily-looking snacks at Wangfujing Night Market.
</p>
</div>
<p>
<img src="/image/tour/mutianyu-section-of-the-great-wall.jpg" class="img-responsive" alt="Walk on Mutianyu Section of the Great Wall" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Beijing - Shanghai (5 1/2 hours by train)
</div>
<p>
After breakfast, we see off to see some old friends: the Giant Pandas at <strong>Beijing Zoo</strong>. You have seen them on TV, magazine and internet, but today you will see them in person. At around 10am, the Giant Pandas at Beijing Zoo are just up for a brunch. Learn about these cute animals and visit their nursery room. <br />
Take a high speed bullet train to Shanghai in the afternoon.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">- Bullet train:</span>
<p>
Bullet train in China offers a comfortable, safe and fast travel experience with a chance to experience China's new railway tech.First Class seats (or Business Class) are booked for more space and comfort.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at The Bund Hotel Shanghai (Handpicked Comfort) / Radisson Blu Hotel Shanghai New World (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/cute-panda-eating-bamboo.jpg" class="img-responsive" alt="Panda at Beijing Zoo" /> <span class="photoTitle">Visit panda before their lunch time</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span>Shanghai
</div>
<p>
Before a city tour in Shanghai, you will firstly visit the <strong>Urban Planning Exhibition Hall</strong> as an introduction of Shanghai. Later, visit <strong>Yuyuan Garden</strong>, which is a speaker for traditional Suzhou-style garden. Have lunch in a local restaurant and continue to <strong>The Bund</strong>. <br />
In the afternoon, take an easy walk along the <strong>French Concession</strong> and your private driver will drop you off at <strong>Nanjing Road</strong> where you may go for free exploration. (Or any other places you wish)
</p>
<p>
<img src="/image/tour/the-bund-at-night.jpg" class="img-responsive" alt="Glamorous night of the Bund in Shanghai" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Shanghai - Hanoi (2h20min by air)
</div>
<p>
Have a free morning in Shanghai. After lunch on your own, you will fly to Hanoi. Meet up with your private tour guide and transfer and get to your hotel for relaxing time.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Time difference:</span>
<p>
Vietnam is one hour late than China. For example, 3pm in China is 2pm in Vietnam.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
<p>
<img src="/image/tour/vendors-chitchat-in-hanoi.jpg" class="img-responsive" alt="Vendors in Hanoi" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Hanoi
</div>
<p>
Hanoi flashes you back to the early 20th century. Get to know the city with a trip to <strong>Vietnam Museum of Ethnology</strong>, <strong>Hoa Lo Prison</strong> and have lunch at a local restaurant. <br />
One of the best things of Hanoi is that you can be a part of the local life. In the afternoon, you will walk around <strong>Hoan Kiem Lake</strong> while observing bustling city life. Later, explore the <strong>Old Quarter</strong> with chances to get great bargains and eats.
</p>
<p>
<img src="/image/tour/florist-in-the-old-quarter.jpg" class="img-responsive" alt="The Old Quarter of Hanoi" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
After a fresh coffee and breakfast, you will be on the way to <strong>Halong Bay</strong>. No rip to Vietnam is complete until you cruise Halong Bay. An overnight is indispensable as the bay itself is boundless and needs at least one day and one night to take in as much as possible.
</p>
<p>
When you arrive at the pier, board the cruise and enjoy the rest of today in amazing vistas.
</p>
<p>
Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats).
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Halong Bay cruise:</span>
<p>
1. All meals are included for the cruise except for drinks and wine. Do some light shopping the night before. <br />
2. The cruise serves a seafood-based menu. We will need your beforehand notice for otherwise arrangement if you have any food allergies.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Indochina Sails (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/kayaking-in-halong-bay.jpg" class="img-responsive" alt="Kayaking in Halong Bay" /> <span class="photoTitle">Kayaking is included in some cruises</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Halong Bay - Hanoi (3 hours by car) - Danang (1 1/2 hours by air) - Hoi An (1/2 hour by car)
</div>
<p>
The cruise ends at around 11am after brunch. <br />
Meet again with your private tour guide and driver at the pier and they will take you to the airport. Fly to Danang, drive down to Hoi An and check in hotel.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Hoi An
</div>
<p>
A quiet little town, Hoi An has a lot to offer. Today we will make your trip in Hoi An special: Put on a traditional Ao Dai and your tour guide will take you around in this charming town, along with a professional photographer. You will make your days in Hoi An everlasting with some beautiful photos. <br />
After lunch at a local restaurant, try out something new at a workshop and <strong>learn how to make paper lanterns</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Ao Dai beauty:</span>
<p>
1. It will take about an hour to try out the Ao Dai and put on makeup. Female travelers will have 2 Ao Dai dresses in different styles and male travlers will have Vietnamese traditional suit.<br />
2. Ao Dai dresses are only for photos. Want to bring home your own dress? Your tour guide will introduce you to a local tailor, who will tailor you up and get done the dress within one night.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/a-girl-in-traditional-ao-dai.jpg" class="img-responsive" alt="A girl in traditional Ao Dai" /> <span class="photoTitle">Ao Dai is a common daily outfit for Vietnamese girls</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Hoi An
</div>
<p>
Born in Hoi An and travelled nationwide during his career as a chef, Mr.Thanh now takes joy in teaching worldwide travelers some real culinary skills. This morning, you will have a couple of fun hours with him. Starting with a trip to the local market, he will take you back to his home kitchen and introduce you to some classic Vietnamese dishes. Have lunch with him after the class. <br />
In the afternoon, have some free tim in Hoi An.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Cooking class and more</span>
<p>
1. Depending on the size of your group, Mr.Thanh will pick you up at the hotel or we will take you to the meeting point. <br />
2. Mr.Thanh will create some kiddie dishes if you are bringing your children.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/thanh-at-kumquat-in-hoi-an.jpg" class="img-responsive" alt="Mr.Thanh in his kitchen in Hoi An" /> <span class="photoTitle">Mr.Thanh will close his restaurant when he gives you a cooking class</span>
</div>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12 &amp; 13 </span>Hoi An - Danang (40 minutes by car) - Nha Trang (1h10min by air)
</div>
<p>
Transfer to Danang for the onward flight to Nha Trang. Enjoy a couple of days on the beatiful beach of Nha Trang.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Transfer in Nha Trang:</span>
<p>
Your private tour guide and transfer in Hoi An will not be coming with you to Nha Trang. We will arrange a private transfer with your hotel for you instead of a shuttle bus.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Liberty Central Nha Trang (Handpicked Comfort) / Diamond Bbay Resort &amp; Spa (Luxury)
</p>
</div>
<p>
<img src="/image/tour/colorful-fishing-boat-on-nha-trang-beach-banner.jpg" class="img-responsive" alt="A colorful fishing boat on the beach of Nha Trang" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 14</span>Nha Trang - Ho Chi Minh City (1 hour by air) - Can Tho (4 hours by car)
</div>
<p>
After breakfast, have some free time at leisure before we fly to the charming city of Ho Chi Minh City. Transfer directly to Can Tho after arrival.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">About Can Tho:</span>
<p>
1. Why Can Tho? Only with an early visit before 7am can you experience the real deal of the floating market. Thus an overnight in Can Tho seems necessary.<br />
2. Tropical fruits are very cheap here in Can Tho and there is a lot to discover in Can Tho's streets. Sipping a coffee on the rooftop would also be a good idea to spend the rest of today.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Iris Can Tho Hotel (Handpicked Comfort) / Victoria Can Tho Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 15</span>Can Tho - Mekong Delta (1/2 hour by boat) - Ho Chi Minh City (4 hours by car)
</div>
<p>
Unlike the overland markets, <strong>Cai Rang Floating Market</strong> in Can Tho opens at 5am, or even earlier. All boats will hang up a piece of merchandises on a pole at the front of the boat, as an ad sign. Farm workers will be busy loading the goods while the orchard owners are calculating numbers with their retailers. This wholesale market presents its best before 8am. And later, we will have boat trip to some small islands and visit a local orchard for lunch. <br />
Drive back to Ho Chi Minh City in the afternoon.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Villa Song Saigon (Handpicked Comfort) / Hotel Des Arts Saigon Mgallery Collection(Luxury)
</p>
<div class="tourPhotoL">
<img src="/image/tour/bustling-floating-market-cai-rang.jpg" class="img-responsive" alt="Bustling Cai Rang Floating Market" /> <span class="photoTitle">Visiting Cai Rang Floating Market, best before 7am</span>
</div>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 16</span>Ho Chi Minh City
</div>
<p>
Want to <strong>be a Saigonist</strong>? <br />
Meet your new friend, the Nguyens, and they will have your over to their home in Ho Chi Minh City. Go shopping with the hostess to the local market for fresh veggies, fruits and stuff. Prepare lunch together and dine together while sharing your stories. They have 3 generations living together in their own long-tube-shaped house, and you will be amused by their stories.<br />
After a simple lunch, you will be free at leisure.
</p>
<p>
<img src="/image/tour/shop-at-the-market-with-a-local-family.jpg" class="img-responsive" alt="Go shopping in a local market with a local Saigonist family." />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 16</span>Ho Chi Minh City - Cu Chi Tunnels (1 1/2 hours by car) - Ho Chi Minh City (1 1/2 hours by car)
</div>
<p>
<strong>Cu Chi Tunnels</strong> is one of the most interesting attractions in Ho Chi Minh City for its mind-provoking historic background and chance for some close-up experience. After breakfast, you will hit the road to this site with a preface by your tour guide. The underground system provided the Viet Cong with space to live, shelter, and battle base during the war with the US. Duck in one of the tunnels to get a hint.
</p>
<p>
After a simple lunch, you will be taken to back to Ho Chi Minh City.
</p>
<div class="tourPhotoL">
<img src="/image/tour/crawl-into-the-tunnel.jpg" class="img-responsive" alt="Trying to get down into the tunnel" /> <span class="photoTitle">Put your arms up while trying to get into the tunnel</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 18</span>Ho Chi Minh City Departure
</div>
<p>
After this long journey, you must be missing home. Today your private tour guide and transfer will escort you to the airport. Have a safe flight and hope to see you again soon!
</p>
</div>
<div class="peggiebox">
<span style="font-size:25px;font-family:inherit;">Tour Map</span>
<p><img src="/image/tour/tour-map/china-and-vietnam-highlights-tour-trip-map-small.jpg" alt="Map of China and Vietnam Highlights Tour" class="img-responsive" /> </p>
</div>
<div class="clearfix">
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/beijing-sunworld-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room in Sunworld Hotel of Beijing" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Beijing - <strong> Sunworld Hotel </strong></span>
<p>
- 4/5 points on TripAdvisor, ranked 87/5,618 hotels in Beijing.<br />
- Located near the Hutong area and walking distance to the Forbidden City and Tian'anmen Square. <br />
- Decent room, soft beds, in-room wifi and professional staff.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/shanghai-the-bund-hotel-superior-twin-room.jpg" alt="Superior Twin Room in The Bund Hotel Shanghai" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Shanghai - <strong> The Bund Hotel Shanghai </strong></span>
<p>
- 80% reviewers rated "Very good" on TripAdvisor, ranked 120/4,218 hotels in Shanghai.<br />
- Close to the Bund, People's Square and Nanjing Road, easy subway access. <br />
- Great selection for breakfast, clean and decent rooms, good wifi and attentive staff.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/nha-trang-liberty-central-deluxe-double-room.jpg" alt="Deluxe Double Room in Liberty Central Nha Trang" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Nha Ttrang - <strong>Liberty Central Nha Trang</strong></span>
<p>
- 4.5/5 points favored by TripAdviosr, ranked 15/171 in Nha Trang.<br />
- Facing the ocean with walking distance to the beach. <br />
- Deluxe rooms (our choice) all on 6th and up, better views and less noisy.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hcmc-villa-song-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Villa Song Saigon</strong></span>
<p>
- Travelers' Choice 2016 on TripAdvisor, ranked 1/412.<br />
- By the Saigon River, 10 minutes by car to downtown. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="noteInfo">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,623 @@
<div id="banner">
<img src="/image/tour/forbidden-city-in-beijing-banner.jpg" class="img-responsive hidden-xs" alt="White daisy vendor in the Old Quarter of Hanoi" /> <img src="/image/tour/forbidden-city-in-beijing-s
.jpg" class="img-responsive visible-xs" alt="White daisy vendor in the Old Quarter of Hanoi" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
18-Day China and Vietnam Highlights Tour: Stand in awe
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row tourBox1">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Getting inside the Forbidden City with VIP access, meet cute pandas, hike on the Great Wall, cruise in Halong Bay, try out Vietnamese traditional dress Ao Dai in Hoi An and explore real life of the Mekong. Without a doubt, these two amazing countries will enrich your experience, not only as a traveler, also as an insider.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
VIP access to the Forbidden City with an expert and enjoy sunset view of the Forbidden City
</li>
<li>
Meet cute pandas and learn about their daily routine
</li>
<li>
Enjoy a smooth and fast bullet train ride from Beijing to Shanghai
</li>
<li>
Dress up in Ao Dai and bring home nice photos
</li>
<li>
Be a new member of a local family in Ho Chi Minh City
</li>
<li>
Free days on the beach of Nha Trang
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,588</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$4,118</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,308</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,848</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,408</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,908</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,138</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,658</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Beijing Arrival
</div>
<p>
When you flight lands in Beijing Capital International Airport, your private tour guide and driver will be in the lobby waiting for you. It wont be hard for you to spot your tour guide as he/she will be holding a sign with your name on. Transfer to your hotel and relax for the rest of the day.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Entry flight:</span>
<p>
To avoid jetlag that might drag you from the upcoming tour in China and Vietnam, wed suggest you book a flight that arrives in Beijing during daytime, preferably before 3pm as you have more time to adjust.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Sunworld Hotel(Handpicked Comfort) / Beijing Marriott Hotel City Wall (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span> Beijing
</div>
<p>
Embrace a brand new day with a fresh coffee and breakfast. Later we will take a walking tour at the <strong>Forbidden City</strong> with a Forbidden City expert. Skip the waiting line at the entrance, you will be taken straight into the imperial palace where you can see the real scene of the movie The Last Emperor and learn the stories behind every building. <br />
You will also have a nice sunset view of the Forbidden City at <strong>Jingshan Park</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Forbidden City Heritage Walk:</span>
<p>
Walking tour in the Forbidden City is one of our best-selling trips of Beijing and it offers a deeper insight into the history without wasting time in the waiting line and getting shoved by the crowds. Your tour guide is actually a nerd of the Forbidden City and for certain he/she will tell you only the things you are interested in.
</p>
</div>
<p>
<img src="/image/tour/corner-tower-of-the-forbidden-city.jpg" class="img-responsive" alt="The Corner Tower of the Forbidden City" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Beijing
</div>
<p>
After breakfast, we will to <strong>Mutianyu Section of the Great Wall</strong>. How long is the Great Wall? Well, there is no simple answer to this question. Take a round-way cable car up the mountain range and you will have a soft hike for about half an hour. This section is more favored by westerners for stunning vistas and less crowded. Have a simple lunch after the trip and we will get back to the city in about 2 hours.
</p>
<p>
For a relaxing afternoon, we will take a visit at the <strong>Summer Palace</strong>, where the royal court used for leisure. Take a boat ride over the Kunming Lake, walk inside the <strong>Garden of Virtuous Harmony</strong> and visit <strong>Suzhou Street</strong>, which is a mini-scale replica of the city Suzhou.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">Good to know:</span>
<p>
- Call yourself a daredevil? Hold that thought until you try out the eerily-looking snacks at Wangfujing Night Market.
</p>
</div>
<p>
<img src="/image/tour/mutianyu-section-of-the-great-wall.jpg" class="img-responsive" alt="Walk on Mutianyu Section of the Great Wall" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Beijing - Shanghai (5 1/2 hours by train)
</div>
<p>
After breakfast, we see off to see some old friends: the Giant Pandas at <strong>Beijing Zoo</strong>. You have seen them on TV, magazine and internet, but today you will see them in person. At around 10am, the Giant Pandas at Beijing Zoo are just up for a brunch. Learn about these cute animals and visit their nursery room. <br />
Take a high speed bullet train to Shanghai in the afternoon.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">Bullet train:</span>
<p>
Bullet train in China offers a comfortable, safe and fast travel experience with a chance to experience China's new railway tech.First Class seats (or Business Class) are booked for more space and comfort.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at The Bund Hotel Shanghai (Handpicked Comfort) / Radisson Blu Hotel Shanghai New World (Luxury)
</p>
</div>
<p>
<img src="/image/tour/cute-panda-eating-bamboo.jpg" class="img-responsive" alt="Visit the Giant Panda in Beijing Zoo" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span>Shanghai
</div>
<p>
Before a city tour in Shanghai, you will firstly visit the <strong>Urban Planning Exhibition Hall</strong> as an introduction of Shanghai. Later, visit <strong>Yuyuan Garden</strong>, which is a speaker for traditional Suzhou-style garden. Have lunch in a local restaurant and continue to <strong>The Bund</strong>. <br />
In the afternoon, take an easy walk along the <strong>French Concession</strong> and your private driver will drop you off at <strong>Nanjing Road</strong> where you may go for free exploration. (Or any other places you wish)
</p>
<p>
<img src="/image/tour/the-bund-at-night.jpg" class="img-responsive" alt="Glamorous night of the Bund in Shanghai" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Shanghai - Hanoi (2h20min by air)
</div>
<p>
Have a free morning in Shanghai. After lunch on your own, you will fly to Hanoi. Meet up with your private tour guide and transfer and get to your hotel for relaxing time.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Time difference:</span>
<p>
Vietnam is one hour late than China. For example, 3pm in China is 2pm in Vietnam.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Hanoi
</div>
<p>
Hanoi is like a flashback of history that brings you back to the early 20th century. Get to know the city with a trip to <strong>Vietnam Museum of Ethnology</strong>, <strong>Hoa Lo Prison</strong> and have lunch at a local restaurant. <br />
One of the best things of Hanoi is that you can be a part of the local life. In the afternoon, you will walk around <strong>Hoan Kiem Lake</strong> while observing bustling city life. Later, explore the <strong>Old Quarter</strong> with chances to get great bargains and eats.
</p>
<p>
<img src="/image/tour/florist-in-the-old-quarter.jpg" class="img-responsive" alt="The Old Quarter of Hanoi" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
After a fresh coffee and breakfast, you will be on the way to <strong>Halong Bay</strong>. No rip to Vietnam is complete until you cruise Halong Bay. An overnight is indispensable as the bay itself is boundless and needs at least one day and one night to take in as much as possible.
</p>
<p>
When you arrive at the pier, board the cruise and enjoy the rest of today in amazing vistas.
</p>
<p>
Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats).
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Halong Bay cruise:</span>
<p>
1. All meals are included for the cruise except for drinks and wine. Do some light shopping the night before. <br />
2. The cruise serves a seafood-based menu. We will need your beforehand notice for otherwise arrangement if you have any food allergies.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Aphrodite Cruise (Handpicked Comfort) / Indochina Sails (Luxury)
</p>
</div>
<p>
<img src="/image/tour/cruise-junks-on-halong-bay.jpg" class="img-responsive" alt="Cruise junks on Halong Bay" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Halong Bay - Hanoi (3 hours by car) - Danang (1 1/2 hours by air) - Hoi An (1/2 hour by car)
</div>
<p>
The cruise ends at around 11am after brunch. <br />
Meet again with your private tour guide and driver at the pier and they will take you to the airport. Fly to Danang, drive down to Hoi An and check in hotel.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Hoi An
</div>
<p>
A quiet little town, Hoi An has a lot to offer. Today we will make your trip in Hoi An special: Put on a traditional Ao Dai and your tour guide will take you around in this charming town, along with a professional photographer. You will make your days in Hoi An everlasting with some beautiful photos. <br />
After lunch at a local restaurant, try out something new at a workshop and <strong>learn how to make paper lanterns</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Ao Dai beauty:</span>
<p>
1. It will take about an hour to try out the Ao Dai and put on makeup. Female travelers will have 2 Ao Dai dresses in different styles and male travlers will have Vietnamese traditional suit.<br />
2. Ao Dai dresses are only for photos. Want to bring home your own dress? Your tour guide will introduce you to a local tailor, who will tailor you up and get done the dress within one night.
</p>
</div>
<p>
<img src="/image/tour/put-on-an-ao-dai-and-make-great-photos.jpg" class="img-responsive" alt="A western girl in Ao Dai dress in Hoi An" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Hoi An
</div>
<p>
Born in Hoi An and travelled nationwide during his career as a chef, Mr.Thanh now takes joy in teaching worldwide travelers some real culinary skills. This morning, you will have a couple of fun hours with him. Starting with a trip to the local market, he will take you back to his home kitchen and introduce you to some classic Vietnamese dishes. Have lunch with him after the class. <br />
In the afternoon, have some free tim in Hoi An.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Cooking class and more</span>
<p>
1. Depending on the size of your group, Mr.Thanh will pick you up at the hotel or we will take you to the meeting point. <br />
2. Mr.Thanh will create some kiddie dishes if you are bringing your children.
</p>
</div>
<p>
<img src="/image/tour/thanh-at-kumquat-in-hoi-an.jpg" class="img-responsive" alt="Mr.Thanh welcomes you with a big smile" />
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12 &amp; 13 </span>Hoi An - Danang (40 minutes by car) - Nha Trang (1h10min by air)
</div>
<p>
Transfer to Danang for the onward flight to Nha Trang. Enjoy a couple of days on the beatiful beach of Nha Trang.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Transfer in Nha Trang:</span>
<p>
Your private tour guide and transfer in Hoi An will not be coming with you to Nha Trang. We will arrange a private transfer with your hotel for you instead of a shuttle bus.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Liberty Central Nha Trang (Handpicked Comfort) / Diamond Bbay Resort &amp; Spa (Luxury)
</p>
</div>
<p>
<img src="/image/tour/colorful-fishing-boat-on-nha-trang-beach-banner.jpg" class="img-responsive" alt="A colorful fishing boat on the beach of Nha Trang" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 14</span>Nha Trang - Ho Chi Minh City (1 hour by air) - Can Tho (4 hours by car)
</div>
<p>
After breakfast, have some free time at leisure before we fly to the charming city of Ho Chi Minh City. Transfer directly to Can Tho after arrival.
</p>
<div class="peggiebox" style="padding-left:10px;padding-right:10px;padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:15px;">About Can Tho:</span>
<p>
1. Why Can Tho? Only with an early visit before 7am can you experience the real deal of the floating market. Thus an overnight in Can Tho seems necessary.<br />
2. Tropical fruits are very cheap here in Can Tho and there is a lot to discover in Can Tho's streets. Sipping a coffee on the rooftop would also be a good idea to spend the rest of today.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night at Iris Can Tho Hotel (Handpicked Comfort) / Victoria Can Tho Resort &amp; Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 15</span>Can Tho - Mekong Delta (1/2 hour by boat) - Ho Chi Minh City (4 hours by car)
</div>
<p>
Unlike the overland markets, <strong>Cai Rang Floating Market</strong> in Can Tho opens at 5am, or even earlier. All boats will hang up a piece of merchandises on a pole at the front of the boat, as an ad sign. Farm workers will be busy loading the goods while the orchard owners are calculating numbers with their retailers. This wholesale market presents its best before 8am. And later, we will have boat trip to some small islands and visit a local orchard for lunch. <br />
Drive back to Ho Chi Minh City in the afternoon.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Villa Song Saigon (Handpicked Comfort) / Hotel Des Arts Saigon Mgallery Collection(Luxury)
</p>
<p>
<img src="/image/tour/bustling-floating-market-on-the-mekong-delta-banner.jpg" class="img-responsive" alt="Cai Rang Floating Market at its busiest hour" />
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 16</span>Ho Chi Minh City
</div>
<p>
Want to <strong>be a Saigonist</strong>? <br />
Meet your new friend, the Nguyens, and they will have your over to their home in Ho Chi Minh City. Go shopping with the hostess to the local market for fresh veggies, fruits and stuff. Prepare lunch together and dine together while sharing your stories. They have 3 generations living together in their own long-tube-shaped house, and you will be amused by their stories.<br />
After a simple lunch, you will be free at leisure.
</p>
<p>
<img src="/image/tour/shop-at-the-market-with-a-local-family.jpg" class="img-responsive" alt="Go shopping in a local market with a local Saigonist family." />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 16</span>Ho Chi Minh City - Cu Chi Tunnels (1 1/2 hours by car) - Ho Chi Minh City (1 1/2 hours by car)
</div>
<p>
<strong>Cu Chi Tunnels</strong> is one of the most interesting attractions in Ho Chi Minh City for its mind-provoking historic background and chance for some close-up experience. After breakfast, you will hit the road to this site with a preface by your tour guide. The underground system provided the Viet Cong with space to live, shelter, and battle base during the war with the US. Duck in one of the tunnels to get a hint.
</p>
<p>
After a simple lunch, you will be taken to back to Ho Chi Minh City.
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 18</span>Ho Chi Minh City Departure
</div>
<p>
After this long journey, you must be missing home. Today your private tour guide and transfer will escort you to the airport. Have a safe flight and hope to see you again soon!
</p>
</div>
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/beijing-sunworld-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room in Sunworld Hotel of Beijing" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Beijing - <strong> Sunworld Hotel </strong></span>
<p>
- 4/5 points on TripAdvisor, ranked 87/5,618 hotels in Beijing.<br />
- Located near the Hutong area and walking distance to the Forbidden City and Tian'anmen Square. <br />
- Decent room, soft beds, in-room wifi and professional staff.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/shanghai-the-bund-hotel-superior-twin-room.jpg" alt="Superior Twin Room in The Bund Hotel Shanghai" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Shanghai - <strong> The Bund Hotel Shanghai </strong></span>
<p>
- 80% reviewers rated "Very good" on TripAdvisor, ranked 120/4,218 hotels in Shanghai.<br />
- Close to the Bund, People's Square and Nanjing Road, easy subway access. <br />
- Great selection for breakfast, clean and decent rooms, good wifi and attentive staff.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/nha-trang-liberty-central-deluxe-double-room.jpg" alt="Deluxe Double Room in Liberty Central Nha Trang" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Nha Ttrang - <strong>Liberty Central Nha Trang</strong></span>
<p>
- 4.5/5 points favored by TripAdviosr, ranked 15/171 in Nha Trang.<br />
- Facing the ocean with walking distance to the beach. <br />
- Deluxe rooms (our choice) all on 6th and up, better views and less noisy.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hcmc-villa-song-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Villa Song Saigon</strong></span>
<p>
- Travelers' Choice 2016 on TripAdvisor, ranked 1/412.<br />
- By the Saigon River, 10 minutes by car to downtown. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="noteInfo">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 18 days (approx.)
</li>
<li>
Tour Code:AH-4
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">3,408</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-4" type="hidden" /> <input name="cli_days" id="cli_days" value="18" type="hidden" /> <input name="destinations" id="destinations" value="Beijing, Shanghai, Hanoi, Halong Bay, Danang, Hoi An, Nha Trang, Ho Chi Minh City, Can Tho Mekong Delta" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,509 @@
<div id="banner">
<img src="/image/tour/angkor-wat-and-apsara-dancers.jpg" class="img-responsive hidden-xs" alt="Apsara dancers at Angkor Wat in Siem Reap" /> <img src="/image/tour/angkor-wat-and-apsara-dancers.jpg" class="img-responsive visible-xs" alt="Apsara dancers at Angkor Wat in Siem Reap" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
12-Day Cambodia and Vietnam Highlights: A Journey in Wonders
</h1>
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row TourInfo">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Unveil Angkor Wat with a local who shares you more than just the temples. Learn how the people conquer dark times in Phnom Penh before you feel up the vibes of Ho Chi Minh City from the back of a motorbike and kick back on sundeck of Halong Bay cruise. This is a journey for true explorers with real wonders.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
Angkor Wat essence and visit the less-visited Beng Meala
</li>
<li>
Learn mind-provoking history in Phnom Penh
</li>
<li>
Ride along with a local motorbiker in Ho Chi Minh City
</li>
<li>
Meet Mr.Thanh in Hoi An at his cooking class
</li>
<li>
Free your mind and body on Halong Bay cruise
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-5,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Siem Reap Arrival
</div>
<p>
Upon arrival, your private tour guide and drive will greet you at the airport. Transfer to hotel and enjoy the rest of day free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Entering Cambodia: </span>
<p>
Siem Reap is connected to some international airports in Asia, such as Hong Kong, Singapore, Bangkok, Guangzhou, Kuala Lumpur, Ho Chi Minh City and Hanoi. We would suggest you take Bangkok as entry considering the cost and accessibility.
</p>
</div>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Tara Angkor Hotel (Handpick Comfort) / Sokha Angkor Resort (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span>Siem Reap
</div>
<p>
Kick start the morning with a fresh coffee and then we will head out for the <strong>Angkor Wat Complex</strong>.
The famous Angkor Wat Complex can be divided into three loops. The first loop contains the major four sites, including <strong>Angkor Wat</strong>, <strong>Angkor Thom</strong>, <strong>Bayon Temple</strong> and <strong>Ta Prohm</strong>. Visit of the first ring will be at easy pace and finished before lunch. <br />
Walk through the ancient hallways of Angkor Wat and you might even hear the echo of the flying Apsaras (celestial female spirits in Angkorian culture). At Bayon Temple, several gigantic stones flicker with the famous “Smile of Angkor”. Giant trees provide a canopy over Ta Prohm and it is just lovely to visit this magnificent site and enjoy the shade ion a hot afternoon.</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Dress code: </span>
<p>
While visiting Angkor Wat of other religious sites alike, sleeve-less tops and short pants are not allowed for either male of female visitors. Female visitors should also wear long dress instead of mini skirt.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/stone-face-of-bayon-temple-of-angkor-wat.jpg" class="img-responsive" alt="Stone face of Bayon" /> <span class="photoTitle">One of the must-do photo stops of Bayon</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Siem Reap - Phnom Penh (45min by air)
</div>
<p>
Outside the first loop of the Angkor Wat Complex, there lies the sparkling pearl of <strong>Banteay Srei</strong>. This small temple complex is constructed by sandstone. This site is at its best in the early morning when the sun gives out a glittering radiance.
The <strong>Cambodia Landmine Museum</strong> is a good place for learning about the tragic history of Siem Reap, and a great break from all the temples. Continue to <strong>Beng Meala</strong>, the un-restored ruins in the jungles, before transfer to the airport for the ongoing flight to Phnom Penh.
In the afternoon, meet with your private tour guide and driver in Phnom Penh and transfer to hotel.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at TEAV Boutique Hotel (Handpick Comfort) / Sokha Phnom Penh Hotel (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Phnom Penh
</div>
<p>
What kind of impression will Phnom Penh leave with you? Feel its charm with a one-day city tour: the <strong>Royal Palace</strong> and <strong>Silver Pagoda</strong> express the spirit of Cambodian traditional culture. Have lunch at Friends the Restaurant.
Learn about the thought-provoking, tear-drawing history of the Khmer Rouge at the <strong>Killing Fields of Choeung Ek</strong> and the <strong>S21 Museum</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">- Friends the Restaurant</span>
<p>
Since 1994, Mith Samlanh, the owner of Friends the Restaurant, has devoted his time in helping street kids and marginalized youth by providing them professional culinary and hospitality training. By having lunch here, you will also be part of the help that supports these young people for a more promising future.
</p>
<span style="font-weight:bold;font-size:14px;">- Haunting history</span>
<p>
Despite the fame of the Killing Fields and S21 Museum, we don't think they are suitable for young children under 15. In such a case, your afternoon sightseeing will be changed to other sites, for example, the National Museum and Russian Market.
</p>
</div>
<p>
<img src="/image/tour/sculpture-and-the-roof-of-royal-palace-in-phnom-penh.jpg" class="img-responsive" alt="A celestial sculpture at the roof of the Royal Palace of Phnom Penh">
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Phnom Penh - Ho Chi Minh City(1 hour by air)
</div>
<p>
Have a free morning in Phnom Penh and fly to Ho Chi Minh City. Check in upon arrival.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights Hotel Continental Saigon (Handpick Comfort) / Grand Hotel Saigon (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Ho Chi Minh City
</div>
<p>
Every Vietnamese household has at least one motorbike and roaming the city by motorbike gives interesting insights into lifestyle of the locals and the layout of the city. Hop on the motorbike and you will see the less-traveled tracks of Saigon.
The driving route is flexible but you will probably see the <strong>Reunification Palace</strong>, <strong>Notre-Dame Cathedral</strong>, and the <strong>Central Post Office</strong>, before stopping for a coffee at a local café.
Lunch will be served at a local restaurant. Sample some Saigon flavors before continuing to exploration in some narrow back alleys of <strong>Chinatown</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - No need for Starbucks </span>
<p>
One of the best hand-me-downs here of French colonists is the love for coffee. Highland Coffee is a national brand boasting for local-produced, fresh coffee beans producing in old-fashioned brews, leaving Starbucks stranded. Today your local tour guide will take you to a Highland Coffee branch. Sit down and watch the world goes by within a nice cup of coffee.
</p>
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Safety first </span>
<p>
A helmet is a must on the motorbike and your tour guide (come driver) will not go beyond 60km/h. This motorbike trip is not suitable for young children under 15 or travelers with special physical restrictions. It can be changed upon request to a more traditional tour by van or car.
</p>
</div>
<p>
<img src="/image/tour/motor-riders-in-ho-chi-minh-city.jpg" class="img-responsive" alt="An amry of motorbikes in Ho Chi Minh City">
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Ho Chi Minh City Danang (1 hour by air) Hoi An (40min by car)
</div>
<p>
Morning fly to Danang and transfer to Hoi An, a lovely town with delights await. <br />
If you are walking alone in Hoi An Ancient Town, all the buildings seem to look the same but a real local will bring alive the stories behind: why the Japanese built the <strong>Japanese Covered Bridge</strong>, what the <strong>Tran Family Chapel</strong> and <strong>Fujian Assembly Hall</strong> mean to the Chinese immigrants and how business was established in the <strong>Old House of Tan Ky</strong>.<br />
Finish todays tour at Reaching Out Teahouse where you will enjoy a moment of serenity.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Reaching Out Teahouse </span>
<p>
A humble wood-built teahouse where young people with hearing disability earn their living by creating a peaceful escape, it is nice to just sit back and watch people pass by.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hoi An Historic Hotel (Handpick Comfort) / Palm Garden Beach Resort & Spa (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Hoi An
</div>
<p>
Traveling is about creating new memories and meeting new people can be part of it. Today you will meet a local chef, Mr. Thanh. Mr. Thanh used to work at some high-end resorts and now returned home and focused on sharing his skills and stories along with an interesting cooking class. This morning, himself or his staff will come and pick you up at the hotel and you will head to the market. Learn about ingredients that will be used for cooking and get back to his house in countryside and start cooking. Have lunch with his family.
Get back to your hotel and free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Cooking class for children </span>
<p>
Mr.Thanh will create some easy dishes for your children to learn if they are interested. If not, his 3 adorable kids will also be nice playmates.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/mr-thanh-the-chef-at-hoi-an-for-cooking-class.jpg" class="img-responsive" alt="Thanh the chef at Kumquat Hoi An Restaurant will teach you how to cook like a Vietnamese"> <span class="photoTitle">Mr.Thanh can speak good English, no need a translator for your cooking class</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Hoi An Danang (40min by car) Hanoi (1 hour by air)
</div>
<p>
Have a free morning in Hoi An. Take an afternoon flight to Hanoi and free at leisure after check-in.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> Accommodation:</span>
<p>
2 nights at Golden Silk Boutique Hotel (Handpick Comfort) / Apricot Hotel Hanoi (Luxury)
</p>
</div>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Hanoi
</div>
<p>
Compared to the vibrant Ho Chi Minh City, Hanoi seems more introverted and slow-going, which is why you need a local insider who can shed special insight for these must-go attractions: <strong>Vietnam Museum of Ethnology</strong>, <strong>Ho Chi Minh Presidential Palace Historical Site</strong> and <strong>Hoa Lo Prison</strong>. Have lunch before you sit back in a rickshaw riding around the <strong>Hoan Kiem Lake</strong> and <strong>Old Quarter</strong>.
</p>
</div>
<p>
<img src="/image/tour/lady-selling-flowers-by-streetside-hanoi.jpg" class="img-responsive" alt="A flower vendor waiting for business">
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
After 10 days of traveling, you deserve some time just for yourself. Today your private tour guide will take you to the beautiful destination of <strong>Halong Bay</strong>. Board on your cruise ship and let the journey begin.
Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats).
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> - Just relax!</span>
<p>
1. All meals onboard are inclusive but not for the drinks. We would suggest you buy some brinks on the way to the pier.<br />
2. The cruise offers a seafood-based meal selection. Please inform us beforehand if seafood doesnt greet with you. <br />
3. Kayaking in the ocean can be so much fun and it is available upon request in advance.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> Accommodation:</span>
<p>
1 night on Glory Legend Cruise (Handpick Comfort) / Bhaya Cruise (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/kayaking-in-halong-bay-vietnam.jpg" class="img-responsive" alt="Go kayaking in Halong Bay"> <span class="photoTitle">Kayaking is available upon request for most cruise ships</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12</span>Halong Bay Hanoi Airport (3 hours by car) Departure
</div>
<p>
The cruise will end at noon after a lovely brunch. Your private tour guide will meet you at the pier and take you to the airport. Fly home with great memories that we created together.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> - One more night in Hanoi</span>
<p>
Straight transfer to the airport is only available for flights that leave after 5pm. You will need to stay one more night in Hanoi otherwisely.
</p>
</div>
</div>
</div>
<div class="peggiebox">
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese and Cambodian style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/siem-reap-tara-angkor-hotel-superior-room.jpg" alt="Superior Room at Tara Angkor Hotel of Siem Reap" class="img-responsive">
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Siem Reap - <strong>Tara Angkor Hotel</strong></span>
<p>
- TripAdvisor's winner of Certificate of Excellence. <br />
- Romantically designed in colonial style with Cambodian influence.Easy to get to the old town. <br />
- Spacious rooms with small balcony, nice lightering and comfy surrounding.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/phnom-penh-teav-boutique-hotel-deluxe-double-room.jpg" alt="Deluxe Double Room of TEAV Boutique Hotel in Phnom Penh" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Phnom Penh - <strong>TEAV Boutique Hotel</strong></span>
<p>
- Ranked 10 out of 265 hotels in Phnom Penh, winner of Certificate of Excellence. <br />
- Centrally-located, getting to major attractions, restaurants and bars within minutes. <br />
- Clean and adequate rooms, swimming pool, nice services.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/ho-chi-minh-city-hotel-continental-saigon-deluxe-double-room.jpg" alt="Deluxe Room of Hotel Continental Saigon of Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Hotel Continental Saigon</strong></span>
<p>
- Ranked 64/428 and winner of Certificate of Excellence. <br />
- Proudly the first hotel in Ho Chi Minh City, it is rich in history and recently renovated. <br />
- Rooms are bigger than most hotels of the same rank, centrally located, a wide selection of breakfast buffet plus great services.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-historic-hotel-deluxe-room.jpg" alt="Deluxe Room of Hoi An Historic Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Hoi An Historic Hotel</strong></span>
<p>
- Ranked 56 on TripAdvisor, winner of Certificate of Excellence. <br />
- Located inside the ancient town, easy to walk to anywhere. <br />
- Large room in historic decoration, good services, outdoor swimming pool, free Wifi and nice spa. <br />
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-golden-silk-boutique-hotel-deluxe-room.jpg" alt="Deluxe Room of Hanoi Golden Silk Boutique Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Golden Silk Boutique Hotel </strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 89 out of 559 hotels in Hanoi. <br />
- Wood floor, historical yet novel decoration, with good location in the Old Quarter. <br />
- Well-equipped room, quiet setting, nice food and services just for good stay.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-glory-legend-cruise-deluxe-cabin.jpg" alt="Deluxe Cabin of Glory Legend Cruise of Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Glory Legend Cruise </strong></span>
<p>
- Winner of Certificate of Excellence, ranked 18 out of 146 cruises in Halong Bay. <br />
- Various activities including sightseeing to remote islands, cooking class and visiting Titov Island for a good view of the bay. <br />
- Nice cabins with wide-open views, family cabins and connecting cabins available.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,542 @@
<div id="banner">
<img src="/image/tour/young-monks-in-angkor-wat.jpg" class="img-responsive hidden-xs" alt="Young monks at Angkor Wat in Cambodia" /> <img src="/image/tour/young-monks-in-angkor-wat.jpg" class="img-responsive visible-xs" alt="Young monks at Angkor Wat in Cambodia" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
14-Day Vietnam, Cambodia and Laos Tour: Sync with Indochina's Heartbeat
</h1>
</div>
</div>
</div>
<div class="container">
<div class="row TourInfo">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
It might be the exotic name of Indochina that grabs you first. Over time, you are destined to sync with the heartbeat of the region: cruising in the breeze of Halong Bay, cooking at a local chefs kitchen in Hoi An, touching the exquisite carvings of Angkor Wat, offering alms to the monks in Luang Prabang's morning and bathing an elephant in the Nam Khan River. Merge yourself with Indochina and make this fortnight the memory of a lifetime.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
Meet Mr.Thanh at his home kitchen and learn some Vietnamese culinary skills
</li>
<li>
Motorbike adventure in Ho Chi Minh City
</li>
<li>
Angkor Wat essence and visit the less-visited Beng Meala
</li>
<li>
Offering the first pot of ricer to the monks in Luang Prabang
</li>
<li>
Bathing an elephant in the Nam Khan River with a loal mahout
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Private transfers and English-speaking tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-6,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: The price is only for reference and subject to change on final confirmation.
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Hanoi Arrival
</div>
<p>
Arrive in the capital city of Vietnam; Hanoi welcomes you with a smile. Transfer to your hotel and relax.
</p>
<div class="peggiebox" style="padding-right:10px;">
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Entering Vietnam: </span>
<p>
People of all nationalities, except those from the Association of Southeast Asian Nations (ASEAN), are required to obtain visa for Vietnam. It is easy to apply for a visa-on-arrival at Noi Bai International Airport in Hanoi. All you need is an approval Lletter, USD25 per person for a single-entry visa stamp and 2 passport-photo-sized photos.
</p>
</div>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hanoi Pearl Hotel (Handpicked Comfort) / Apricot Hanoi Hotel (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span>Hanoi
</div>
<p>
Hanoi is like an undemonstrative lady whose stories are benevertheless intriguing. Today take a city tour in Hanoi to get to know her better. Firstly, the <strong>Vietnam Museum of Ethnology</strong> will introduce you to 50-plus minority groups with colorful cultures. Your guide will bring history to life at the <strong>Ho Chi Minhs Mausoleum</strong> and <strong>Hoa Lo Prison</strong>. Vietnamese food iswill be served for lunch at a local restaurant. <br />
Carry on, and you will visit <strong>Dong Xuan Market</strong> and walk around the <strong>Hoan Kiem Lake</strong>, before your exploration for more in the <strong>Old Quarter</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - The traffic in Hanoi: </span>
<p>
Watch out for motorbikes when you are walking in the Old Quarter. The riders all tend to drive very fast but you will be fine if you keep your eyes on the road and dont stray onto the driving lanes. Keep a careful eye on your children at all times, taking them by the hand if necessary.
</p>
</div>
<img src="/image/tour/flower-vendors.jpg" class="img-responsive" alt="Flower vendors at the Old Quarter of Hanoi" />
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Hanoi - Halong Bay (3 hours by car)
</div>
<p>
Have breakfast at your hotel and you will then be taken to Halong Bay. Listed as a UNESCO World Heritage Site, <strong>Halong Bay</strong> is not only a place for amazing landscapes, but also for some quality time with your loved one(s). <br />
Every cruise ship has its own route; but on your cruise you will probably see Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as passing some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc. Some cruises also include a cooking class at night and a tai chi lesson in the morning.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
1 night on Paloma Cruise (Handpicked Comfort) / Paradise Luxury Cruise (Luxury)
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/islands-of-halong-bay.jpg" class="img-responsive" alt="View of Halong Bay" />
<span class="photoTitle">Get the view of the bay at the top of Titov Island</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Halong Bay - Hanoi (3 hours by car) - Danang (1 1/2 hours by air) - Hoi An (40min by car)
</div>
<p>
The cruise comes to a beautiful end as the ship slowly pulls in to the shore. Transfer to the airport and fly to Danang, one of the biggest cities in Vietnam and a major transportation hub for travelers down to the south. Take a 40-minute drive to Hoi An town.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Essence Hoi An Hotel &amp; Spa (Handpicked Comfort) / Palm Garden Beach Resort &amp; Spa (Luxury)
</p>
</div>
<p>
<img src="/image/tour/handmade-lanterns-in-hoi-an.jpg" class="img-responsive" alt="Lanterns light up the night of Hoi An" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Hoi An
</div>
<p>
Meet with Mr. Thanh, who used to be the head chef for some high-end resorts in Nha Trang and Danang and now takes satisfaction in sharing the essence of Vietnamese cooking with people from other cultures. This morning, he will come and pick you up at the hotel. <br />
Cycle with him (or ride in a private car depending on the size of your group) through the ancient town until you reach his house in the village. Take tour of the market to prepare for cooking 3 dishes. Have lunch with Mr. Thanhs family before returning to your hotel. <br />
You will have some free time exploring the Ancient Town of Hoi An in the afternoon.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Good cooking and great food!</span>
<p>
Kumquat Hoi An Restaurant treats customers with a homely setting and great food. The restaurant is closed when Mr. Thanh teaches a class to make sure every student learns without distraction. If you are taking the class with your children, they can play with Thanhs three adorable kids while you are busy with dicing and chopping.
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/mr-thanh-the-chef-at-hoi-an-for-cooking-class.jpg" class="img-responsive" alt="Mr.Thanh, the chef in Hoi An" />
<span class="photoTitle">Meet our friend Mr.Thanh in Hoi An</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Hoi An - Danang (40min by car) - Ho Chi Minh City (1 hour by air)
</div>
<p>
Today we will arrange an afternoon flight so you may have more free time in Hoi An. Transfer to Danang and fly to Ho Chi Minh City. Have some free exploration after checking in your hotel.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Liberty Central Saigon Citypoint (Handpicked Comfort) / Grand Hotel Saigon (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Ho Chi Minh City
</div>
<p>
When in Rome, do as the Romans do. When in Saigon, roam as a Saigoner.<br />
Today you will hop on a motorbike and explore the city in a different way: besides some must-see attractions including <strong>Reunification Palace</strong>, <strong>Notre-Dame Cathedral</strong> and the <strong>Central Post Office</strong>, you will have the chance to go deep into the back streets. Have lunch at a local restaurant and then continue the drive to <strong>Chinatown</strong> and <strong>Binh Tay Market</strong>.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - The ride:</span>
<p>
The motorbike trip is only for small groups (maximum 5 people) because of safety concerns. Visits at the attractions will only be to view them from outside except for the markets. Private car or van can be arranged on request, instead of motorbike.
</p>
</div>
<p>
<img src="/image/tour/cityscape-of-ho-chi-minh-city.jpg" class="img-responsive" alt="City view of Ho Chi Minh City" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Ho Chi Minh City - Siem Reap (1h1min by air)
</div>
<p>
Surprisingly, morning in Saigon does not seem that bustling and busy when you start with a nice cup of coffee. Enjoy some free time before your flight to Siem Reap. Check in your hotel and have have the rest of today free at leisure.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
3 nights at Tara Angkor Hotel (Handpicked Comfort) / Sokha Angkor Resort (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Siem Reap
</div>
<p>
Only by visiting the Angkor Wat Complex in person, can one say with authority that the word wonder is well-deserved. Today you will visit the essential parts of the complex: Angkor Wat, the primary exhibits.<br />
<strong>Angkor Thom</strong>, yesterdays royal city; <strong>Ta Prohm</strong>, an Indiana Jones fantasy in reality; <strong>Bayon Temple</strong>, the iconic site for the mysterious Smile of Angkor. Each of these four sites was constructed for a different purpose and in a different style. One thing that they have in common is that they stand for the ultimate pursuite for immortality. Your tour guide will share interesting insights and even divulge some secrets of Apsara (female celestial being) carvings. <br />
At night, you will attend a dinner show at <strong>Por Cuisine Restaurant</strong> and witness the Apsaras come to life.
</p>
<p>
<img src="/image/tour/a-monk-at-bakheng-hill.jpg" class="img-responsive" alt="A monk siting at the top of the mountain" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 10</span>Siem Reap
</div>
<p>
If you are a bit tired of temples, todays sites will be quite refreshing. <strong>Bantey Srei</strong>, situated in the jungles and built withby pink sandstone, demonstrates the essences of Angkorian art. <br />
Visit the <strong>Cambodia Landmine Museum</strong> and learn about Aki Ras lifelong efforts to eliminate landmines. Thanks to him and his team, <strong>Beng Meala</strong>, which was full of landmines some decades ago, is now safe to visit, and you will probably revel in the rustic ambience. Lunch is simple Cambodian cuisine (or international upon request) at a local restaurant.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Aki Ra and Landmines:</span>
<p>
Aki Ra was born in 1970 (or 1973) and raised to be a child soldier during the time of Khmer Rouge. His job was to lay landmines. He started disarming and removing landmines in 1993 and founded this museum as a center to support his team, landmine victims and a childrens center. The team, Cambodian Self Help Demining (CSHD), is committed to the mission of clearing landmines from the whole country.
</p>
</div>
<p>
<img src="/image/tour/sculptures-of-bantey-srei.jpg" class="img-responsive" alt="Beautiful carvings of Bantey Srei" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 11</span>Siem Reap - Luang Prabang (1h25min by air)
</div>
<p>
Enjoy a lazy morning in Siem Reap before the flight to Luang Prabang, Laos. Transfer to your hotel upon arrival and take a relaxing walk in the peaceful town of Luang Prabang.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Belle Rive Boutique Hotel (Handpicked Comfort) / Kiridara Hotel (Luxury)
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 12</span>Luang Prabang
</div>
<p>
Rise up early in the morning and you will participate in an important ritual: <strong>morning alms giving</strong>. To show respect, locals offer their first pot of sticky rice of the day to Buddhist monks, who walk a long distance barefoot into the town. Such simple food is their only food resource of the day. Get in line and wait for the monks' approach. <br />
After the ritual, you will visit the <strong>morning market of Luang Prabang</strong>. Todays tour will be at a slow pace: <strong>Xieng Thong Temple</strong>, the <strong>Traditional Art Exhibition Center</strong> and the <strong>Royal Palace Museum</strong>. Sample some local cuisine for lunch.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Some tips of alms-giving:</span>
<p>
Female travelers should not touch the monks at all. If donating, place food directly into the monks basket. Women should wear a sarf-like cape over their left shoulder. Always use your right hand to give food. Do not give snacks or any kind of meat.
</p>
</div>
<p>
<img src="/image/tour/xiang-thong-temple-of-luang-prabang.jpg" class="img-responsive" alt="Xieng Thong Temple of Luang Prabang" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 13</span>Luang Prabang
</div>
<p>
Ban Xieng Lom Village, also known as the <strong>Elephant Village</strong>, is actually a charity site that supports less-advantaged villagers by offering them job opportunities, and serves as a safe haven for elephants. The elephants graze in the jungle, not inside cages, and it is fairly easy to get close to these lovely creatures under proper instructions from mahouts (elephant experts). <br />
This morning one of the villagers will pick you up at the hotel and transfer you to the site. Spend the day with your new friend, feeding, and training elephants, and bathing them in the Nam Khan River. Have a simple buffet lunch in the village and take a boat ride to <strong>Tad Sae Waterfall</strong> where you can go swimming. Return to your hotel in the afternoon.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Bathing fun:</span>
<p>
The water in the Nam Khan River is shallow but we wouldnt recommend this for children under 12, unless they are competent swimmers. Do remember to bring a bathing suit for swimming and a clean outfit to change into after the swim..
</p>
</div>
<div class="tourPhotoL">
<img src="/image/tour/elephant-village-of-luang-prabang.jpg" class="img-responsive" alt="Ride an elephant in Luang Prabang" />
<span class="photoTitle">One elephant can take only two riders</span>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 14</span>Luang Prabang Departure
</div>
<p>
Enjoy some free time in Luang Prabang before the departure flight. Transfer to the airport and fly back home.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> - Connecting flight:</span>
<p>
In flying home to another continent or to other Asian countries from Luang Prabang, many travelers choose Bangkok as an interim transit location., A stopover in Bangkok can easily turn into a great holiday extension. Spend 1 day in Bangkok to see the city highlights; and if you can spare 2 days for a trip to Chiang Mai or 3 days for a rest at the beach, you will call it a fantastic holiday.
</p>
</div>
</div>
</div>
<div class="peggiebox">
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hanoi-pearl-hotel-standard-room.jpg" alt="Standard room of Hanoi Pearl Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong>Hanoi Pearl Hotel</strong></span>
<p>
- 4.5/5 points by over 600 travelers on TripAdvisor.<br />
- By the Hoan Kiem Lake, 10 minutes to walk to the Old Quarter. <br />
- All rooms allow extra bed and adjoining rooms are available for families on holiday.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/halong-bay-paloma-cruise-deluxe-double-cabin.jpg" alt="Deluxe Double Cabin of Paloma Cruise in Halong Bay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Paloma Cruise</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor and ranked 17/166.<br />
- Cruising through a less-crowded bay Bai Tu Long Bay with more islands to see. <br />
- We choose your cabin on the 2nd deck with private balcony for better views and quieter night.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/hoi-an-essence-hoi-an-hotel-and-spa-deluxe-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Essence Hoi An Hotel &amp; Spa</strong></span>
<p>
- Winner of Certificate of Excellence on TripAdvisor, ranked 6/119.<br />
- Secluded and rural setting, 15 minutes to walk to the Ancient Town of Hoi An. <br />
- Featuring with great spa center, outdoor swimming pool and nice food. Connecting rooms are great for families.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/ho-chi-minh-city-liberty-central-saigon-citypoint-deluxe-room.jpg" alt="Deluxe Room of Liberty Central Saigon Citypoint Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Liberty Central Saigon Citypoint</strong></span>
<p>
- A winner of Certificate of Excellence on TripAdvisor, ranked #12 or 423 hotels in Ho Chi Minh City. <br />
- By the Ho Chi Minh Square, away from the crowded riverside area yet easy to find shopping malls, bars and restaurants nearby. <br />
- AH's choice, Deluxe Room, has great lighting from large double-glazed windows and great views of the city.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/siem-reap-tara-angkor-hotel-superior-room.jpg" alt="Superior Room at Tara Angkor Hotel of Siem Reap" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Siem Reap - <strong>Tara Angkor Hotel</strong></span>
<p>
- TripAdvisor's winner of Certificate of Excellence, 4.5/5 points by over 2,600 travelers. <br />
- Romantically designed in colonial style with Cambodian influence.Easy to get to the old town. <br />
- Spacious rooms with small balcony, nice lightering and comfy surrounding.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/luang-prabang-belle-rive-boutique-hotel-superior-room.jpg" alt="Superior Room of Belle Rive Boutique Hotel" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Luang Prabang - <strong>Belle Rive Boutique Hotel</strong></span>
<p>
- Proudly Travelers' Choice 2016 on TripAdvisor, 4.5/5 points by travelers. <br />
- Great location, nice view of the Mekong River, 5-minute walking distance to Xieng Thong Temple. <br />
- Colonial style rooms with private balcony, humble and friendly staff and nice breakfast.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
<form id="form_tour_detail" name="form_tour_detail" action="/orders/asia_tour" method="post">
<div class="tourBox">
<ul class="tourList">
<li>
Duration: 14 days (approx.)
</li>
<li>
Tour Code:AH-6
</li>
<li>
Tour Type: Private Tours
</li>
</ul>
<div class="promoPrice">
<span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">#AH-6,st,25,2016-09-10#</span> <a class="priceLink" href="#price">Price details</a>
</div>
<div class="letterrow">
Book This Tour
</div>
<div class="departTime">
<span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span> <input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker datepicker" />
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title"> Adults(18+):</span> <select id="adultenum" name="adultenum"><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller">
<span class="title">Children(&lt;12):</span> <select id="childnum" name="childnum"><option value="0">0</option><option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour">
</div>
<span class="bookTour"> <input value="Send" class="bookTour" onclick="return checktourbox();" type="submit" /> </span>
</div>
<input name="cli_no" id="cli_no" value="AH-6" type="hidden" /> <input name="cli_days" id="cli_days" value="14" type="hidden" /> <input name="destinations" id="destinations" value="Hanoi, Halong Bay, Danang, Hoi An, Ho Chi Minh City,Siem Reap, Luang Prabang" type="hidden" />
</form>
</div>
</div>
</div>

@ -0,0 +1,501 @@
<div id="banner">
<img src="/image/tour/two-novices-chasing-in-a-monastery-in-bagan.jpg" class="img-responsive hidden-xs" alt="Two novices chasing each other in a monastery in Bagan" /> <img src="/image/tour/two-novices-chasing-in-a-monastery-in-bagan.jpg" class="img-responsive visible-xs" alt="Two novices chasing each other in a monastery in Bagan" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
9-Day Myanmar Highlights Tour: The Land and the People
</h1>
</div>
<div class="crumbNav">
<a href="/">Home</a><a href="/tours/">Top Tours</a>Myanmar Highlights
</div>
</div>
</div>
<div class="container" id="mcontent">
<div class="row TourInfo">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>
Take this Myanmar tour to discover its beautiful landscape: rolling mountains, rustic villages, countless temples and calm water. It is also about the people: they chitchat in Scott Market in Yangon, give alms to monks in Mandalay and take you among floating gardens in Inle Lake. So hard to resist Myanmars charm when it throws you back to pure innocence.
</p>
<h2 class="highlights">
Highlights
</h2>
<div class="tourHighlights">
<ul>
<li>
Get a glimpse at the house where Aung San Suu Kyi was put under house arrest
</li>
<li>
Observe amazing sunset among thousands of temples in Bagan
</li>
<li>
Approach to monks during their daily rituals in some monasteries
</li>
<li>
Take a boat trip in Inle Lake through the floating gardens and villages
</li>
</ul>
</div>
<h2 class="includeIcon">
What's Included
</h2>
<ul class="whatIncluded">
<li>
Approval Letter for Myanmar e-Visa
</li>
<li>
Private transfers and English-speaking tour guides in every destination
</li>
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary
</li>
<li>
Breakfasts at hotels, lunches for every guided day
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon" id="price">
Price per Person in US Dollars
</h2>
<div class="table-responsive">
<table class="priceTable ke-zeroborder" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<th class="second" scope="col" width="34%">
Nov.1 - Mar.31
</th>
<th scope="col" width="33%">
Handpicked Comfort
</th>
<th scope="33%">
Luxury
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,st,25,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,lx,25,2016-11-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,st,69,2016-11-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,lx,69,2016-11-10#</a>
</td>
</tr>
<tr>
<th class="second" scope="col" width="34%">
Apr.1 - Oct.31
</th>
<th scope="col" width="33%">
<br />
</th>
<th scope="33%">
<br />
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,st,25,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,lx,25,2016-09-10#</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,st,69,2016-09-10#</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$#AH-7,lx,69,2016-09-10#</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>
Note: We will grant you get the price as showed above except that there will be a price fluctuation in festival seasons (such as National Day, Myanmar New Year and etc).
</p>
<div class="peggiebox">
<h2 class="itineraryIcon">
<a name="itinerary"></a>Suggested Itinerary
</h2>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 1</span>Yangon Arrival
</div>
<p>
Being isolated for so many years, Myanmar remains a land of less-touched highlights. Today you will arrive in Yangon Mingaladon Airport and be greeted by your private tour guide and driver. Transfer to hotel for rest.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Connection & Extension: </span>
<p>
1. Connection: There are international flights between Yangon and these cities: Beijing, Guangzhou, Kunming, Hong Kong, Hanoi, Singapore, Bangkok, Seoul, Kuala Lumpur and Mumbai. Beyond Asia, Bangkok is an all-time-good transit if you are flying from other continents. Note that flights from Bangkok to Yangon mostly take off from BKK and in the afternoon, so it's better to arrive in Bangkok early in the morning if you are not planning a night in Bangkok.<br />
2. Extension: Myanmar is just a part of your globale travel plan? Yangon can be connected to China, Singapore, India, Hong Kong, South Korea and Vietnam directly; for other countries, take Bangkok as a transit. How about an extension to Angkor Wat? Roll down to the bottom of this page and you will find our special deal for a 5-day trip in Siem Reap.
</p>
<span style="font-weight:bold;font-size:14px;"> - Approval Letter for Myanmar e-Visa: </span>
<p>
People of all nationalities, except those from the Association of Southeast Asian Nations (ASEAN), are required to obtain visa for Myanmar. Our Myanmar tours include the fee for Approval Letter (ranging from USD30 to 50 depending on nationality), which shall be applied and issued at least one month before your travel time, and your travel advisor will send it along with the tour confirmation. Approval Letter will be used for eVisa application for air entry. Take your passport and 1 passport-size photo to get your passport stamped at one of the airports of Yangon, Mandalay or Nap Pyi Taw, with no extra cost at the airport.
</p>
<span style="font-weight:bold;font-size:14px;"> - Speak your language: </span>
<p>
Although the country is now partly open, more and more people are encouraged to learn and use foreign languages. Besides English, we also have some Spanish, French, German, Italian and Russian-speaking tour guides.
</p>
<span style="font-weight:bold;font-size:14px;"> - Food to your taste: </span>
<p>
Just like other Asian countries, Myanmar cuisines is a bit heavy in taste and spices and with a menu based in rice, fish, chicken, beef and vegetables. All restaurants in the itinerary are simple, local but hygienic restaurants with tableware sterilized every day and setting well-kept. However, we can arrarnge Halal, Kosher and vegetarian meals upon your special request.
</p>
<span style="font-weight:bold;font-size:14px;"> - Accommodations in Myanmar: </span>
<p>
Most hotels for foreign tourists in Myanmar were built in the late 1990's without A/C and limited choices. It is until recent years that A/C rooms and family rooms have become a standard for hotels when more and more foreign-funded hotels are being built. Hotels of Asia Highlights' selection are all with A/C and rooms of at least 30㎡. To ensure a cozy stay, Asia Highlights would suggest you choose hotels at a higher ranking.
</p>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Summit Park View Hotel (Handpicked Comfort) / Novotel Yangon Max (Luxury)
</p>
</div>
<p>
<img src="/image/tour/yangon-welcomes-you.jpg" class="img-responsive" alt="Myanmar welcomes you with a big smile" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 2</span>Yangon
</div>
<p>
Yangon, also known as Rangoon, used to be the capital of Myanmar until superseded by Nay Pyi Daw in 2005 and now still the commercial center and definitely a must-see for any Myanmar tours. <br />
Today, get to know its history and fascinating cultures with a city tour. First stop is the famous <strong>Shwedagon Pagoda</strong>, enshrining strands of Buddhas hair and covered with layers of pure gold. Later, learn about the countrys history at <strong>National Museum</strong> before lunch at a local restaurant. <br />
In the afternoon, take a walk in the <strong>Colonial District</strong> in downtown of Yangon, lined with some beautiful colonial-era buildings such as High Court Building (built in 1914), Strand Hotel (built in 1896), Ministers' Building (built in the late 1800s) and your tour guide will reveal some secret stories behind them. Later, you will stop by <strong>Aung San Suu Kyi House</strong>, where Aung San Suu Kyi, the leader of the National League of Democracy was put under house arrest on and off for 15 years. Finish todays visit at <strong>Bogyoke Aung Suu Market</strong>, also known as Scott Market (named after C. Scott, the Municipal Commissioner in the early 1920s), is an interesting place for people watching and great bargains.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Travel time: </span>
<p>
Myanmar has been seeing more and more international faces in recent years. Travel time is always a big factor to consider when you are planning a trip to Myanmar. Weather-wisely, the best time is during October to next March for it's sunny, not much rain and not too hot. Meanwhile, traveling during April to September, when it comes rain and wind, can be also beneficial for there is less people and you can enjoy good service at a lower price. Nevertheless, it is smart to avoid festival seasons (when price can go double and roads jammed with celebrating locals), such as Myanmar New Year in the middle of April, Bo Tree Watering Festival in May, Festival of Lights in October and Nat Festivals in December.
</p>
<span style="font-weight:bold;font-size:14px;"> - Entering the temple: </span>
<p>
Travelers should not wear sleeveless tops or short pants while visiting a religious site. Leggings and short skirts are not allowed, either. Take off shoes at the entrance. This applies to all cities in Myanmar.
</p>
</div>
<div class="tourPhotoL">
<p>
<img src="/image/tour/shwedagon-pagoda-of-yangon.jpg" class="img-responsive" alt="Shwedagon Pagoda is the landmark of Yangon" />
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 3</span>Yangon - Bagan (1h20m by air)
</div>
<p>
Take an early flight to Nyaung U Airport and transfer to your hotel in Bagan. <br />
This afternoon, we will stretch out to <strong>Minanthu Village</strong>, a peaceful village about 7km southeast of Bagan. It sees fewer travelers and remains a quiet village where people make a living by tradition handcrafts such as lacquer ware and weaving. You will also see some Chin women who tattoo their faces as a way to distinguish their group, social and marital status and possibly age. Later, visit <strong>Kyat Khayon Cave Monastery</strong>. This underground monastery is located outside the old Bagan and was built to isolate the monks and novices from the outside world for better training.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Nyaung U, Old Bagan, New Bagan and what's the difference? </span>
<p>
The three districts of Bagan, Nyaung U (also spelt as Nyaung Oo), Old Bagan and New Bagan, have their shares of fans: <br />
1. <strong>Nyaung U</strong>, about 30 minutes of driving to the archaeological zone, is where the airport is and there are a lot of budget-friendly hotels to choose, the colonial atmosphere of the town makes a great walk-around, all buses and boats arrive at Nyaung U, too; <br />
2. <strong>Old Bagan</strong> boasts for the perfect accessibility to the archaeological zone and hotels range from mid-range to luxury can be found here; <br />
3. in 1990, the government relocated the villagers from Old Bagan down to the furthest south point that is today's <strong>New Bagan</strong>, 20 minutes away from Old Bagan by car, this is the place you can find budget and mid-range hotels and restaurants. <br />
Asia Highlights chooses great value hotels in Old Bagan for your easy get-around and enjoyable stay.
</p>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Bagan Hotel River View (Handpicked Comfort) / Aureum Palace Hotel and Resort (Luxury)
</p>
</div>
<p>
<img src="/image/tour/grandma-and-two-novices-in-bagan.jpg" class="img-responsive" alt="Grandma and two novices in Bagan" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 4</span>Bagan
</div>
<p>
Listed as a World Heritage Site, <strong>Bagan Archaeological Zone</strong> is simply astonishing with its over 2,200 ruins scattering on the vast plain of Bagan. There used to be more than 10,000 in its day of prime and most are of 10 centuries old. Some are large and tall while others are hidden among the grass and hard to spot out. <br />
Today you will visit Ananda Pagoda, Dhammayangyi Pagoda, Maha Bodhi Pagoda and possibility to get around by bike. At dusk, you will get up to one of the pagodas to view amazing sunset over the plain.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;"> - Panoramic view of Bagan: </span>
<p>
The best sunset viewing points, allowing a panoramic view of the archaeological zone would be Shwesandaw Pagoda and Pyathatgyi Pagoda. Shwesandaw is very popular among tourists while Pyathatgyi offers you a chance to get inside the pagoda.
</p>
<span style="font-weight:bold;font-size:14px;"> - Hot air balloon flight (Optional):</span>
<p>
Flying up in the sky, overlooking all the temples at sunrise, a 1-hour hot air balloon ride can be something special to tell your friends back home. It is available for booking during October to next March, morning time schedule every day and sunset flight upon request.
</p>
</div>
<div class="tourPhotoL">
<p>
<img src="/image/tour/hot-air-balloon-in-bagan-in-the-early-morning.jpg" class="img-responsive" alt="Optional tour of hot air balloon flight is only available during October to next March" />
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 5</span> Bagan - Mandalay (30min by air)
</div>
<p>
Get to Mandalay by air in the early morning. Transfer to hotel for a break. <br />
Mandalay used to be Myanmars ancient capital, leaving the city with a graceful touch of its golden days. Today your private tour guide will take you to Amarapura, 11km south of Mandalay. Firstly we will visit <strong>Taungthaman Village</strong> by the lake shore and meet some friendly people.<br />
After lunch, we will visit <strong>Mahagandayon Monastery</strong> when the monks and novices are doing their daily training. Every day the monks line up to get lunch offered by local people, which can be a great chance for photos. It's amazing that such a long line of people can be so quiet and so stoic as nothing else matters besides the pot in their hands.<br />
Time comes to sunset and we will take a walk across the <strong>U Bein Bridge</strong>. The teak wood structure reaches nearly 1,200 meters over the Taungthaman Lake, known as one of the most photographic sites in Myanmar. Get back to Mandalay before the evening.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Merit scam:</span>
<p>
You may encounter some women on the bridge who claim that they will let go off an owl if you pay 1 dollar, as a good deed for merit. Dont fall for it because those owls are trained and they are always ready to fly back to their owners.
</p>
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Hotel Shwe Pyi Thar (Handpicked Comfort) / Mandalay Hill Resort (Luxury)
</p>
</div>
<div class="tourPhotoL">
<p>
<img src="/image/tour/two-local-women-walking-on-u-bein-bridge.jpg" class="img-responsive" alt="Local women walking on U Bein Bridge" />
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 6</span>Mandalay
</div>
<p>
Today you will get to know Mandalay better. Start with a visit at Mandalay Palace. Constructed in 1859, <strong>Mandalay Palace</strong> is the last seat of Myanmar monarchy, following the rules of traditional Burmese palace design with four walls surrounded by moat and main palace facing the east. It was destroyed by bombing during World War II and been reconstructed to recapture the glory of the Mandalay Kingdom. Have a simple lunch at a local restaurant.<br />
In the afternoon, we will walk in <strong>Shwenandaw Monastery</strong>, originally a part of the royal palace and the only part of the palace that was not destroyed by that bombing. The verandah on the first level of the monastery is delicately carved. <br />
At the north point of the city, by the foot of Mandalay Hill, the <strong>World's Biggest Book at Kuthodaw Pagoda</strong> sits in silence waiting for its gawking readers. Your tour guide will take you here in late afternoon when big crowds have been gone and the light is just fine for photos. <br />
Get onto the top of <strong>Mandalay Hill</strong> and you will get a great view of the city at sunset.
</p>
<div class="tourPhotoL">
<p>
<img src="/image/tour/two-novices-in-a-monastery-in-mandalay.jpg" class="img-responsive" alt="Two novices in Mandalay" /> <span class="photoTitle">Candle lighting is a tranditional Buddhist ritual for good luck</span>
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 7</span>Mandalay - Inle Lake (35min by air)
</div>
<p>
Rise up early and you will be taken to Nyaung U Airport for onward flight to Heho Airport, 1 hour away to Inle Lake. Transfer to your hotel and take a short break. <br />
Take a boat trip to <strong>Indien Pagoda Complex</strong>, the biggest highlight of the peaceful village Indien of Tuangyi. There are countless ancient pagodas springing out of the water. It is so easy to get soaked up in the timeless atmosphere as your boat weaves through the creeks. If you are coming on a market day, you will see Shan, Pa-O and Danu people coming down from their hill tribes to trade goods.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - 5-day Market in Inle Lake:</span>
<p>
Villages around Inle Lake take a 5-day market day rotation. The hosting sites are Nyaung Shwe, Heho, Taunggyi, Mine Thauk, Shwe Nyaung, where people from over the lake area will gather by boats and trade their goods including home-produced vegatables, handicrafts and daily suppliers. If you are interested, your travel advisor will try to match your travel with one market day if possible. <br />
Also, the 8-km boat trip is only possible during the rainy season and winter, which is May to next February. The water is too shallow for boating during other time of the year.
</p>
<span style="padding-left:5px;padding-right:5px;padding-bottom:5px;font-weight:bold;font-size:14px;"> - Accommodations in Inle Lake:</span>
<p>
Heho, Nyaungshwe and Inle Lake are the three major settlements around Inle Lake area. <br />
1. <strong>Heho</strong>, 1 hour away by car from Inle Lake, has an airport and a railway station, also the termnial of some long-haul buses. Travelers who plan to spend at least 5 days in Inle Lake favorite this place for budget-friendly accommodations and easy transfer. <br />
2. <strong>Nyaungshwe</strong>, the main town of Inle Lake area, is 45 minutes by car to both the airport in Heho and to the lake itself. It offers a big share of mid-range hotels, great value resorts, nice restaurants and the lively main town atmosphere is just good for people-watching. <br />
3. <strong>Inle Lake</strong>, particularly around the lakeshore, is where the finest resorts are located. Featuring with nice lake view and mostly garden-setting, these hotels are made for great stay more than just 1 night, which makes up the limited choice of getting around in these laid-back villages. <br />
Asia Highlights chooses hotels that are within half-hour driving to the lake with nice rooms and great services in Nyaungshwe.
</p>
<span style="font-weight:bold;font-size:14px;">Accommodation:</span>
<p>
2 nights at Thanakha Inle Hotel (Handpicked Comfort) / Aureum Inle Resort and Spa (Luxury)
</p>
</div>
<p>
<img src="/image/tour/pagodas-of-indien-in-inle-lake.jpg" class="img-responsive" alt="Pagodas of Indien Pagoda Complex in Inle Lake" />
</p>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 8</span>Inle Lake
</div>
<p>
Take a boat trip in Inle Lake to experience the unique lifestyles. Firstly, visit <strong>Nga Phe Kuang</strong>, a monastery built above the water. This monastery used to be famous for the jumping cats but now cats are not trained with this kind of prowess, instead, they will be just laying around and meow to greet you. Burmese believe building new pagodas and monasteries are part of their life merit, but not so in preserving the old ones, which is the reason why this ancient monastery is important as a preservation for ancient Buddha images and the wooden monastery itself holds a lot of history. <br />
On the way to <strong>Phaungdaw Oo Pagoda</strong>, you will see many houses built on silts and people get around by boat waving hello to you. Have a simple lunch at a nearby floating restaurant on the lake. <br />
<strong>Floating Gardens</strong> are like countless gems scattering all over the lake and you will see how farmers row their boats to tend every piece of small farming beds. Chance to watch the legendary "One-Leg" fishermen rowing and fishing at the same time.
</p>
<div class="tourPhotoL">
<p>
<img src="/image/tour/boat-trip-in-inle-lake.jpg" class="img-responsive" alt="Take a boat trip with the locals to their villages" /> <span class="photoTitle">For safety reason, one canoe can take only two people including the boater and each traveler will have a life jacket.</span>
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates">
<span class="tourDays">Day 9</span>Inle Lake - Yangon (1h10m by air) - Yangon Departure
</div>
<p>
Say goodbye to the peaceful lake and you will be taken to Heho Airport. Fly back to Yangon and connect with your international flight.
</p>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> - Departure flight: </span>
<p>
The earliest flight from Heho to Yangon lands at 11am in Yangon. You may need to stay in Yangon for one more night if your international flight departs before 11am.
</p>
<span style="pfont-weight:bold;font-size:14px;"> - Shopping in Bangkok: </span>
<p>
Make Bangkok your exit and you will have a blast in this wonderful city for a couple of days. Let us know if you need further arrangement.
</p>
</div>
</div>
</div>
<div class="peggiebox">
<span style="font-size:25px;font-family:inherit;">Tour Map</span>
<p>
<img src="/image/tour/tour-map/myanmar-highlights-tour-map.jpg" alt="Map of Myanmar Highlights Tour" class="img-responsive" />
</p>
</div>
<div class="clearfix">
</div>
<div class="peggiebox" style="padding-right:10px;">
<span style="pfont-weight:bold;font-size:14px;"> Angkor Wat Wonder Awaits You!</span>
<p>
Extend your adventure to the wonderness of Angkor Wat in Siem Reap by taking Bangkok as a transit.
</p>
<div class="peggiebox">
<span style="font-weight:bold;font-size:16px;color:#06C;"><a hre="/tours/siem-reap-tour-at-depth.htm" rel="nofollow"> 5-Day Siem Reap Tour at Depth</a></span><span style="font-size:14px;color:#666;padding-bottom:10px;">5 nights handpicked comfort | from USD 838/person </span>
<p>
<a href="/tours/siem-reap-tour-at-depth.htm"><img src="/image/tour/ah-8-siem-reap-at-depth.jpg" class="img-responsive" style="float:left;padding-right:10px;padding-top:10px;" /></a> <br />
Highlights: <br />
- A local Khmer scholar sharing insights of Angkor Wat <br />
- Sparkling diamonds of the Angkor -- Bantey Srei and Beng Meala <br />
- Meet those who live above water in a floating village <br />
- No time wasted - Airport Fast Track Services only for VIPs <br />
- Helping while traveling - give back to the local community
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<h2 class="HotelUes">
<a name="handpickeds"></a>Asia Highlights Handpicked Hotels
</h2>
<p>
Asia Highlights chooses hotels with a balanced mixture of traditional style and modern comfort, easy access to everything yet quiet enough for a good night's sleep.
</p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/yangon-grand-hotel-united-superior-room.jpg" alt="Superior Room of Grand Hotel United in Yangon" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Yangon - <strong>Hotel Grand United (Ahlone Branch) </strong></span>
<p>
- Ranked 19/137 hotels in Yangon on TripAdvisor.<br />
- Centrally-located, Shwedagon Pagoda, Bogyoke Market and National Museum are within walking distance. <br />
- Every room has private balcony and features view of the city or the glittering Shwedagon Pagoda.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/bagan-bagan-hotel-river-view-deluxe-room.jpg" alt="Deluxe Room of Bagan Hotel River View" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Bagan - <strong>Bagan Hotel River View</strong></span>
<p>
- Winner of 4 years of Certificate of Excellence on TripAdvisor.<br />
- Close to Bagan Archeological Zone, by the riverbank of the Ayeryarwaddy. <br />
- Hand-built teak wood hotel, swimming pool, spacious A/C rooms and free Wifi available.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/mandalay-hotel-shwe-pyi-thar-deluxe-room.jpg" alt="Deluxe Room in Hotel Shwe Pyi Thar in Mandalay" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Mandalay - <strong>Hotel Shwe Pyi Thar</strong></span>
<p>
- One of the most popular mid-range hotels in Mandalay. <br />
- Boasting for unbeatable location: 10 minutes of driving to Mandalay Hill, 10 minutes of walking to city center and 15 minutes of driving to Mandalay Palace. <br />
- Burmese royal style throughout the hotel, wide-open view outside the window, soft beds, A/C, swimming pool and free Wifi.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage">
<img src="/image/tour/tour-hotel/inle-lake-thanakha-inle-hotel-deluxe-room.jpg" alt="Deluxe Room of Thanakha Inle Hotel in Inle Lake" class="img-responsive" />
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Inle Lake - <strong>Thanakha Inle Hotel</strong></span>
<p>
- Ranked 4 of all hotels in Inle Lake, a winner of Certificate of Excellence.<br />
- Wood-constructed villas located in a quiet village, 20 minutes of driving to Inle Lake. <br />
- Rooms of 100sqm, nice natural views, swimming pool and gym for leisure.
</p>
</div>
</div>
<div class="clearfix">
</div>
<div class="peggiebox">
<p>
<strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose.
</p>
</div>
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#itinerary">Suggested Itinerary</a>
</li>
<li>
<a href="#handpickeds">Handpicked Hotels</a>
</li>
</ul>
</div>
@BOOKINGFORM@
</div>
</div>
</div>

@ -0,0 +1,476 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>15-Day China and Thailand Highlights Tour</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="Copyright" content="www.chinahighlights.com, copyrights reserved." />
<meta name="description" content="Get the essence of Beijing, Shanghai, Bangkok and Chiang Mai and relax yourself with some free days on a beach of Phuket in this China and Thailand highlights tour."/>
<link href="http://d1.cdnch.com/js/fullcalendar/fullcalendar.min.css" rel="stylesheet" />
<link href="http://data.chinahighlights.com/css/min.php?f=/public/css/global.min.css,/css/tour/detail2.css&v=2015" rel="stylesheet">
<link href="/css/tour/detail.css" rel="stylesheet">
<script language="JavaScript" src="http://data.chinahighlights.com/js/min.php?f=/js/jquery-1.8.2.min.js,/js/ChtPublic.js,/public/js/bootstrap.min.js,/js/in-field-labels/jquery.infieldlabel.min.js,/js/jquery.sticky-kit.js,/js/validation/jquery.validate.min.js,/js/jquery-base64.js,/js/jquery.lazyload.min.js,/js/linksubmit.js,/js/newcalendar.js&v=20141125" type="text/javascript"></script>
<script language="JavaScript" src="/js/tour/tour-detail-static.js" type="text/javascript"></script>
<script src="http://d1.cdnch.com/js/min.php?f=/js/fullcalendar/lib/moment.min.js,/js/fullcalendar/fullcalendar.min.js"></script>
<script src="/js/price/pricecalendar.js"></script>
<script>
$(function(){
$("#formquestion").stick_in_parent({parent: "#mcontent"});
//form valid
$('#gpsublit').click(function(){
var stdate = $('input[name="Starting_Date"]:checked').val();
if(typeof stdate == 'undefined'){
$('#dateerrmsg').html('<span style="color:#c00">Please select prefered time</span>');
$('#dateerrmsg').removeClass('hidden');
return false;
}
});
$("#Starting_Date").datepicker({
showAnim:"fadeIn",
duration:0,
minDate: 0,
maxDate:"2y",
numberOfMonths: 2,
showButtonPanel: true
});
});
</script>
<!--[if lte IE 9]>
<link href="http://data.chinahighlights.com/public/js/fixie/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="/public/js/fixie/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />
<script src="http://data.chinahighlights.com/js/min.php?f=/public/js/respond.min.js,/public/js/fixie/respond.proxy.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!--#include virtual="/include/header-html5-city-tours.asp" -->
<div id="content">
<div class="container" id="mcontent">
<div id="photoTop">
<img src="http://data.chinahighlights.com/image/tour-list/th-04/alms-giving-in-bangkok.jpg?201411">
<h1>China and Thailand Highlights Tour</h1>
</div>
<div class="row">
<div class="col-lg-16 col-sm-16 col-xs-24">
<div class="summaryBox">
<div class="day-destination"><a id="summary"></a>TH-04: China and Thailand Highlights Tour
</div>
<div class="row">
<div class="col-md-5 col-sm-5 col-xs-6"><span class="priceFrom"><i>From:</i> <b>$2,139</b></span></div>
</div>
</div>
<p class="pagetext">Pack up China's profound history with Thialand's delightfulness, this 15-day China and Thailand tour introduces you to the major highlights of China and relax yourself with some free days on the beach. </p>
<div class="tourHighlights">
<h2>Highlights</h2>
<ul>
<li>Enter the Forbidden City with VIP access and tour with a real insider</li>
<li>Hike on the Great Wall with wide-open vistas</li>
<li>Cooking class at Chiang Mai</li>
<li>Relax your body and soul on Kata Beach of Phuket</li>
</ul>
</div>
<h2 class="includeIcon">What's Included</h2>
<ul class="whatIncluded">
<li>Entrance to scenic spots listed in the itinerary</li>
<li>Private English-speaking guide and driver service throughout the tour</li>
<li>Lunches mentioned in the itinerary</li>
<li>Hotel accommodation with breakfast</li>
<li>Private transfers between the airport/train/bus station, attractions, and hotels</li>
</ul>
<h2 class="costIcon visible-xs">Price Per Person in US Dollars</h2>
<div class="visible-xs">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable">
<tbody>
<tr>
<th width="34%" scope="col" class="second">Nov.1 - Mar.31 </th>
<th width="33%" scope="col">Deluxe Class</th>
<th scope="33%">Superior Class</th>
</tr>
<tr>
<td class="first">2-5 People</td>
<td>
<a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=hs-1')" rel="nofollow">$2,349</a>
</td>
<td> <a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$3,099</a>
</td>
</tr>
<tr>
<td class="first">6-9 People</td>
<td>
<a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$2,139</a>
</td>
<td> <a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$2,879</a></td>
</tr>
<tr>
<th width="34%" scope="col" class="second">Apr.1- Oct.31</th>
<th width="33%" scope="col">&nbsp;</th>
<th scope="33%">&nbsp;</th>
</tr>
<tr>
<td class="first">2-5 People</td>
<td>
<a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=hs-1')" rel="nofollow">$2,239</a>
</td>
<td> <a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$2,949</a>
</td>
</tr>
<tr>
<td class="first">6-9 People</td>
<td>
<a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$2,039</a>
</td>
<td> <a class="item" href="JavaScript:void(0)" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=hs-1')" rel="nofollow">$2,739</a></td>
</tr>
</tbody>
</table>
</div>
<div class="hidden-xs">
<h2 class="costIcon"><a id="price-table"></a> Select Your Travel Date</h2>
<div id="calendar" data-clino="hs-1"></div>
<p><strong>Note:</strong><br>
The price is based on 6-9 people in the group. Choose the date and number of people to see the exact price.</p>
</div>
<h2 class="itineraryIcon"><a name="itinerary" id="itinerary"></a>Suggested Itinerary</h2>
<div class="daytourBox">
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 1</span> Beijing Arrival</div>
<p>Welcome to China! You will meet up with your private China tour guide upon arrival at Beijing Capital International Airport. Transfer to hotel and relax. </p>
<p><strong> - Jetlag:</strong><br>
To ease from jetlag, we'd suggest you flight in during daytime as you will have much time to adjust and relax.</p>
<p><strong>Accommodation </strong><br>
3 nights at Sunworld Hotel Beijing (superior class 4*)/ Beijing Marriott Hotel City Wall (deluxe class 5*)</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 2</span> Beijing Forbidden City Heritage Walk </div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/the-forbidden-city-in-beijing.jpg" class="img-responsive">
<span class="photoBy">The Forbidden City in Beijing</span>
</div>
<p>The first stop of today will be the <strong>Tian'anmen Square</strong>, where you will get a close up at the portrait of Chairman Mao. The square is also the entrace of the Forbidden City. <br />
Don't waste your time waiting in the line. Today you will enter the <strong>Forbidden City</strong> with your insider tour guide who is an expert of the royal palace. You will walk through this massive site learning about the stories behind. Have lunch at a local restaurant. <br />
Your tour guide will take you up the top of Jingshan Mountain in <strong>Jingshan Park</strong> and you will <strong>watch the sunset of the Forbidden City</strong>. </p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 3</span> Beijing The Great Wall Wonder</div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/mutianyu-section-of-the-great-wall-in-beijing.jpg" class="img-responsive">
<span class="photoBy">Enjoy the view at the Mutianyu Section of the Great Wall</span>
</div>
<p>You will hit the road early in the morning as to beat the big crowds. Arrive at the <strong>Mutianyu Section of the Great Wall</strong>, enjoy a cable car ride up to the top. Go for a gentle hike along the backbone of the mountain. Have a simple lunch after the visit. <br/>
In the afternoon, drive back to the city and visit the <strong>Temple of Heaven</strong> where the royal families took as an alter to worship the heaven. </p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 4</span> Beijing Fly to Shanghai</div>
<p>After breakfast, have some free time in the city. Fly to Shanghai and free at leisure for the rest of today. </p>
<p><strong>Accommodation </strong><br>
3 nights at The Bund Hotel (superior class 4*)/ Radisson Blu Hotel Shanghai New World (deluxe class 5*)</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 5</span> Shanghai City Highlights</div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/the-bund-by-night.jpg" class="img-responsive">
<span class="photoBy">The Bund at sunset</span>
</div>
<p>As fast-moving as it is, Shanghai has a lot to share. Today you will firstly visit the <strong>Shanghai Urban Planning Exhibition Hall</strong> to learn about how Shanghai was built. And the visit <strong>Yuyuan Garden</strong>. Taste some local cuisine for lunch. <br />
Walk in the <strong>Former French Concession</strong> while your tour guide tells you some interesting stories back in the days. Admire the city in lights after nightfall in <strong>The Bund</strong> along the Huangpu River.</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 6</span> Shanghai Free Day</div>
<p>Enjoy a whole day free at leisure in Shanghai. </p>
<p><strong>- Shopping time!</strong><br>
Get some great deals in the malls around the People's Square. If you are interesting in antiques, remember to check out Dongtai Road Antique Street.</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 7</span> Shanghai Fly to Bangkok</div>
<p>Thailand is known as the Land of Smile for its friendly people, beautiful landscape and various experiences. Fly to Bangkok from Shanghai and get yourself relaxed in this charming city. </p>
<p><strong>Accommodation </strong><br>
2 nights at Holiday Inn Express Bangkok Siam (superior class 4*)/ Banyan Tree Bangkok (deluxe class 5*)</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 8</span> Bangkok Essence Trip</div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/grand-palace-of-bangkok-thailand.jpg" class="img-responsive">
<span class="photoBy">The Grand Palace of Bangkok</span>
</div>
<p> Sense Bangkok's passion with an insightful visit to the <strong>Grand Palace</strong> and the <strong>Temple of Emerald Buddha</strong>, which will unveil the history and Buddhism cultures. Later, visit the <strong>National Museum</strong> and <strong>Jim Thompson House</strong>. Lunch will be served at a local restaurant with authentic Thai taste.
</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 9</span> Bangkok Fly to Chiang Mai</div>
<p>Take a flight to Chiang Mai and spend some free time in this peaceful place. </p>
<p><strong>Accommodation </strong><br>
2 nights at Dusit Princess Chiang Mai (superior class 4*)/ Rachanmankha a Member of Secret Retreats (deluxe class 5*)</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 10</span> Cooking Class and Lovely Chiang Mai Tour</div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/learn-some-thai-cooking-in-chiang-mai.jpg" class="img-responsive">
<span class="photoBy">Learn some Thai cookery skills in Chiang Mai</span>
</div>
<p>Thai people think natural ingredients would help them better understand and approach to long life both physically and mentally. And today you will learn a thing or two about how Thai people cook at a <strong>Cooking Class at Thai Orchid Cookery School</strong>. Lunch is included. <br/>
In the afternoon, take visits at <strong>Wat Prahat Doi Suthep</strong> and at night you will have some fun at <strong>Chiang Mai Night Bazaar</strong>. </p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 11</span> Chiang Mai Fly to Phuket</div>
<p>Have some free time in Chiang Mai and take a flight to Phuket. Check in at the hotel and enjoy a whole free day on the beach. </p>
<p><strong>Accommodation </strong><br>
3 nights at Metadee Reosrt & Villas (superior class 4*)/ Tavorn Pam Beach Resort Phuket (deluxe class 5*)</p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 12 & 13</span> Phuket Free Days</div>
<div class="photoRight"><img src="http://data.chinahighlights.com/image/tour-list/th-04/swimming-in-the-crystal-clear-water-of-phuket.jpg" class="img-responsive">
<span class="photoBy">Swimming in the crystal-clear water of Phuket</span>
</div>
<p>Enjoy yourself on the beautiful beach of Phuket. </p>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 14</span> Phuket Fly to Bangkok</div>
<p>Have some free time before the flight to Bangkok. Check in and have some time shopping or leisure.</p>
<p><strong>Accommodation </strong><br>
1 night at Holiday Inn Express Bangkok Siam (superior class 4*)/ Banyan Tree Bangkok (deluxe class 5*)</p><strong></strong>
</div>
<div class="dayTourList">
<div class="tourDates"><span class="tourDays">Day 15</span> Bangkok Departure</div>
</div>
<p>Have some free time in Bangkok before the flight back home. Hope to see you again soon!</p>
</div>
<div class="clearfix"></div>
<div class="tripNotes">
<h2 class="noteIcon"><a id="tripnotes"></a>Trip Notes</h2>
<h3>1. Visa for Thailand</h3>
<p>Travelers may apply Visa-On-Arrival at both airports of Bangkok. The fee is THB1,000 (Thai Bhat in cash only) with 2 passport-size photos.</p>
<h3>2. Tailoring Your Tour</h3>
<p><strong>This tour is very flexible.</strong> You can alter the itinerary, extend or shorten it to suit your price, interest, and schedule. If you would like to book the hotels on your own, we can remove the hotel cost from quotation. Please inform your travel advisor about your preference.</p>
<h3>Options to further extend your tour:</h3>
<ol>
<li><strong>Travel to Vietnam or Cambodia</strong><br> It is fairly easy to extend your trip to the neighboring countries of Thailand. Vietnam for profound history and fascinating landscape and Cambodia for the splendid Angkor Wat.</li>
<li><strong>Minority Tribes in Chiang Rai and Around</strong><br> Rearrange this itinerary and you may stretch out to Chiang Rai and its rolling mountains where Karen people and other ethnic groups live.<br>
</ol>
<p>Feel free to tell us your requirements and interests, and we will be happy to help you arrange a trip with our professional knowledge and experience.</p>
<h3>3. Booking Procedure:</h3>
<p><strong>Step 1:</strong> Submit <strong>your name, email address and traveling dates</strong> for the tour. The price may vary according to the location of your hotel.<br>
<strong>Step 2:</strong> Choose to <strong>make payment via PayPal</strong> and your request will be listed as our <strong>top priority</strong>. We guarantee a <strong>100% refund</strong> if you are not satisfied.<br>
<strong>Step 3:</strong> Receive a <strong>reply within 24 hours</strong>. The tour will be tailor-made to meet your requirements and the booking confirmed.<br>
<strong>Step 4:</strong> Enjoy the tour!<br>
<h3>4. Payment Methods:</h3>
<p>We now offer three payment methods: PayPal, credit card authorization via fax, and wire transfer. PayPal is recommended for its safety and efficiency. You can pay with USA dollars, Australian dollars, European dollars, and British pounds directly with your credit card or debit card if you do not have a PayPal account.</p>
<h3>5. Cancellation Policy:</h3>
<p>In the event of cancellation, we will refund any payment made to China Highlights (unless any cancellation fee is applicable) within 14 days of our receipt of your written cancellation request. Visit <a href="http://www.chinahighlights.com/aboutus/terms.htm">here</a> for more details.</p>
<h3>7. Travel Insurance:</h3>
<p>Travel insurance is not included. We carefully selected some insurance providers from your region that give you the best value for money. Click <a href="http://www.chinahighlights.com/travelguide/insurance/">here</a> to go to the travel insurance page.</p>
</div>
<div class="inquiryBlock hidden-xs">
<span class="freeInquiry"><a href="#price-table">Select a date</a></span>
</div>
</div>
</div>
</li>
<div id="addtionalRight" class="col-lg-8 col-sm-8 hidden-xs">
<div class="inpageNav">
<ul>
<li><a href="#summary">Summary</a></li>
<li><a href="#itinerary">Suggested Itinerary</a></li>
<li><a href="#tripnotes">Trip Notes</a></li>
</ul>
</div>
<div class="TourTA">
<span class="TALogo"><img src="/image/tour-
detail/TA/ta-logo.png"></span>
<span class="booktrip">Book your best trip, every
trip</span>
<span class="Rating">TripAdvisor Traveler
Rating</span>
<span class="TALogo"><img src="/image/tour-
detail/TA/ta-star.gif"></span>
<span class="Rating">Most Recent Traveler
Reviews</span>
<script src="/js/moment.min.js"></script>
<script>
$(function () {
var ta_city = 'huangshan';
var ta_code = 'hs-1';
var ta_top = '2';
var para = {};
if (ta_city != '') para.city = ta_city;
if (ta_code != '') para.code = ta_code;
if (ta_top != '') para.top = ta_top;
$.get("http://www.chinahighlights.com/api/api.php?method=ta.message", para, function (data) {
var _html = '';
if (data.length > 0) {
for (var i = 0; i < data.length; i++) {
//var _date = (moment(new Date(data[i].GuestPostDate)).format('LL').split(',')[0]).replace(' ', '.');
var _date = moment(new Date(data[i].CreateDate)).format('LL').split(',');
_date = _date[0] + ',' + _date[1];
_html += '<span class="booktrip">' +_date+ ': "' + data[i].intro + '" <a href="' + data[i].link + '" target="_blank"> <span class="ViewMore">View more</span></a></span>'
}
$("#ta-list").html(_html);
}
}, 'json');
});
</script>
<span id="ta-list">
</span>
<div class="clear"></div>
<span class="TACoppyright">© 2016 TripAdvisor
LLC</span>
</div>
<form action="/forms/reserve-tour-simple-save.asp" id="formquestion" method="post" novalidate>
<div id="questionBox">
<div class="questionContent">
<span class="interested">Quick Inquiry</span> <span class="interest-label">Are you interested in this tour?<br>This tour can be tailored.</span>
<div class="infoRequired">
<p>
<label for="realname">Full Name: </label>
<input name="realname" type="text" id="realname" value="" />
</p>
<p>
<label for="yemail">Email: </label>
<input name="yemail" type="text" id="yemail" value="" />
</p>
<p>
<label for="Starting_Date">Approx. tour start: </label>
<input name="Starting_Date" type="text" id="Starting_Date" value="" />
</p>
<p class="paxInfo" style="display: block;">
<select style="width:50%" id="padult" name="padult">
<option selected="selected" value="0">Adults</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
</select>
<select style="width:48%" id="pchild" name="pchild">
<option selected="selected" value="0">Children</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</p>
<p class="des">
<label for="Aquestion"><strong>Tell us your tour ideas: </strong><br>departure dates & days, where to visit... </label>
<textarea name="Aquestion" id="Aquestion"></textarea>
<input type="hidden" name="Q_URL" id="Q_URL" />
<input type="hidden" value="hs-1" name="clino">
</p>
</div>
<input type="submit" value="Send my inquiry" class="sendButton">
</div>
</div>
</form>
</div>
</div>
</div>
<div class="footerBtn">
<div class="col-xs-24 inquiry"><a href="javascript:;" onClick="jsGetToPost('/forms/reservation-form-citytour.asp?season=1&grade=7002&size=2&cli_no=hs-1')">Inquiry Now</a></div>
</div>
<!--#include virtual="/include/footer-html5.asp" -->
</div>
<!-- Google Code for Tour List -->
<!-- Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. For instructions on adding this tag and more information on the above requirements, read the setup guide: google.com/ads/remarketingsetup -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 996341496;
var google_conversion_label = "JQQJCNiUmQgQ-O2L2wM";
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<script src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-52170b0a4a301edc"></script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/996341496/?value=1.000000&amp;label=JQQJCNiUmQgQ-O2L2wM&amp;guid=ON&amp;script=0"/>
</div>
</noscript>
</body>
</html>

@ -0,0 +1,506 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div id="banner"><img src="/image/tour/forbidden-city-in-beijing-banner.jpg" class="img-responsive hidden-xs" alt="White daisy vendor in the Old Quarter of Hanoi">
<img src="/image/tour/forbidden-city-in-beijing-banner.jpg" class="img-responsive visible-xs" alt="White daisy vendor in the Old Quarter of Hanoi">
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>18-Day China and Vietnam Highlights Tour: Stand in awe</h1>
</div></div>
</div>
<div class="container">
<div class="row TourInfo">
<div class="col-lg-16 col-md-16 col-sm-16 col-xs-24">
<p>Historically related, culturally influenced yet both fascinating in their own ways, China and Vietnam can be packed together for a unforgettable journey. Meet cute pandas, hike on the Great Wall, visit the Terracotta Army, cruise in Halong Bay, walk in Hoi An and explore real life of the Mekong. You know you will be awed.</p>
<h2 class="highlights">Highlights</h2>
<div class="tourHighlights">
<ul>
<li>
VIP access to the Forbidden City with an expert
</li>
<li>
Meet cute pandas during their lunch time
</li>
<li>
Away-from-the-big-crowd visit at the Terracotta Army in Xi'an
</li>
<li>
Sweet dreams under the star in Halong Bay
</li>
<li>
Free days on the beach of Nha Trang
</li>
<li>
Mekong Delta life exploration with deep insights
</li>
</ul></div>
<h2 class="includeIcon">What's Included</h2>
<ul class="whatIncluded">
<li>
All guided sightseeing as detailed in the itinerary
</li>
<li>
Private transfers and English-speaking Vietnam tour guides in every destination
</li>
<li>
Breakfasts at hotels, lunches for every guided day and one soft drink per person for the Halong Bay Cruise
</li>
<li>
Internal flights including taxes and fuel as specified in the itinerary and flight from Shanghai to Hanoi
</li>
<li>
Hotel accommodation mentioned in the itinerary
</li>
<li>
Governmental taxes
</li>
</ul>
<h2 class="costIcon">Price per Person in US Dollars</h2>
<div class="table-responsive">
<table cellspacing="0" cellpadding="0" border="0" class="priceTable ke-zeroborder">
<tbody>
<tr>
<th width="34%" class="second" scope="col">
Nov.1 - Mar.31
</th>
<th width="33%" scope="col">
Deluxe Class
</th>
<th scope="33%">
Our Handpicked
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,799</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$4,499</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,399</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$4,199</a>
</td>
</tr>
<tr>
<th width="34%" class="second" scope="col">
Apr.1 - Oct.31
</th>
<th width="33%" scope="col">
</th>
<th scope="33%">
</th>
</tr>
<tr>
<td class="first">
2-5 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=2&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,499</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$4,299</a>
</td>
</tr>
<tr>
<td class="first">
6-9 People
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,199</a>
</td>
<td>
<a rel="nofollow" onclick="jsGetToPost('/forms/reservation-form-citytour.asp?season=2&amp;grade=7002&amp;size=6&amp;cli_no=cd-7')" href="JavaScript:void(0)" class="item">$3,899</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>Note: The price is only for reference and subject to change on final comfirmation.</p>
<div class="peggiebox">
<h2 class="itineraryIcon"><a id="itinerary" name="itinerary"></a>Suggested Itinerary</h2>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 1</span>Beijing Arrival
</div>
<p>When you flight lands in Beijing Capital International Airport, your private tour guide and driver will be in the lobby waiting for you. It wont be hard for you to spot your tour guide as he/she will be holding a sign with your name on. Transfer to your hotel and relax for the rest of the day. </p>
</div>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p> -To avoid jetlag that might drag you from the upcoming tour in China and Vietnam, wed suggest you book a flight that arrives in Beijing during daytime, preferably before 3pm as you have more time to adjust. <br />
- Asia Highlights Handpicked Hotel: Red Wall Garden Hotel wins hearts by its preferable location in the Hutong area. The stay itself offers an authentic Beijing ambiance and a bonus to explore the Hutongs on your own.
</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 2</span> Beijing</div>
<p> Embrace a brand new day with a fresh coffee and breakfast. Later we will take a walking tour at the <strong>Forbidden City</strong> with a Forbidden City expert. Skip the waiting line at the entrance, you will be taken straight into the imperial palace where you can see the real scene of the movie The Last Emperor and learn the stories behind every building. </p>
<p> After lunch at local restaurant, you will learn more about the imperial cultures at the <strong>Temple of Heaven</strong>. The site was used for worship at the beginning of a new year. Sacrifices were offered to the Heaven with prayers for favorable weather and good harvest.
</p>
<p> For dinner, we will slice up a <strong>Peking Duck</strong> and roll it up with flour wrap, just as what locals do.
</p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="font-weight:bold; font-size:15px;">Good to know:</span>
<p>- Walking tour in the Forbidden City is one of our best-selling trips of Beijing and it offers a deeper insight into the history without wasting time in the waiting line and getting shoved by the crowds. Your tour guide is actually a nerd of the Forbidden City and for certain he/she will tell you only the things you are interested in.
</p>
</div>
<p><img src="/image/tour/slicing-peking-duck.jpg" class="img-responsive" alt="The cook is slicing a Peking Duck"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 3</span>Beijing </div>
<p>After breakfast, we will to <strong>Mutianyu Section of the Great Wall</strong>. How long is the Great Wall? Well, there is no simple answer to this question. Take a round-way cable car up the mountain range and you will have a soft hike for about half an hour. This section is more favored by westerners for stunning vistas and less crowded. Have a simple lunch after the trip and we will get back to the city in about 2 hours. </p>
<p>For a relaxing afternoon, we will take a visit at the <strong>Summer Palace</strong>, where the royal court used for leisure. Take a boat ride over the Kunming Lake, walk inside the <strong>Garden of Virtuous Harmony</strong> and visit <strong>Suzhou Street</strong>, which is a mini-scale replica of the city Suzhou. </p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p> - Call yourself a daredevil? Hold that thought until you try out the eerily-looking snacks at Wangfujing Night Market. </p>
</div>
<p><img src="/image/tour/mutianyu-section-of-the-great-wall.jpg" class="img-responsive" alt="Walk on Mutianyu Section of the Great Wall"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 4</span>Beijing - Xi'an (1h50min by air)</div>
<p>After breakfast, we see off to see some old friends: the Giant Pandas at <strong>Beijing Zoo</strong>. You have seen them on TV, magazine and internet, but today you will see them in person. At around 10am, the Giant Pandas at Beijing Zoo are just up for a brunch. Learn about these cute animals and visit their nursery room. </p>
<p>Fly to Xian after lunch. Check in your hotel and free at leisure. </p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p> -Mai Chau Town is fairly easy to get around. You may choose to go cycling or be guided by your local insider. <br />
- Homestay in Mai Chau may be one of the selling points for most tour companies; we have chosen something more in modern and comfortable for you. If you have a special interests in a homestay, then make a request for one. </p>
</div>
<p><img src="/image/tour/cute-panda-eating-bamboo.jpg" class="img-responsive" alt="Visit the Giant Panda in Beijing Zoo"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 5</span>Xi'an </div>
<p>The first emperor of China, Qin Shihuang united all kingdoms in 221BC and he wanted his ruling to last forever, thus the built of <strong>Terracotta Army</strong>. This massive site contains numerous clay-molded soldiers, horses, chariot and weapons, which were buried with Qin Shihuang as his asset in the other world. Visit this site in the morning and have lunch on the way back to the city.</p>
<p>Would like to know more about Xian and its history? This afternoon, you will take a walk along the <strong>Ancient City Wall</strong> with your knowledgeable tour guide. Later, visit the bustling <strong>Muslim Quarter</strong>.</p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p>- Break the crowds, we will firstly visit the less-crowded part of the Terracotta Army at Pit 3 and swing back to Pit 1 and 2 after the big crowds of tourists leave them. <br />
- Ancient City Wall is ranked highly on most websites, you can either bike it or walk it, no matter what, your tour guide will be with you and introduce you some interesting tidbits about the city. </p>
</div>
<p><img src="/image/tour/terracotta-warriors-in-xian.jpg" class="img-responsive" alt="Countless Terracotta Warriors of the site in Xi'an"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 6</span>Xi'an - Shanghai (2h20min by air)</div>
<p><strong>Xian Historic Museum</strong>, featuring with a rich collection of historical treasures, art works and documents, will make an insightful visit in the morning. After lunch you will fly to Shanghai.</p>
<p> Upon arrival in Shanghai, your private tour guide and driver will have you in the hotel and free time for the night. Among countless hotels in Shanghai, we choose the ones within half-hour walking distance to the Bund so you may have a relaxing night walk by yourself. If you are a photo fan, bring your tripod for the nightscape. </p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 7</span>Shanghai </div>
<p>Have an early morning visit to the <strong>Yuyuan Garden</strong>, an delicately-built example of traditional Suzhou-style garden. You might be fascinated about the fast-spinning city life and do you know how much efforts were put in building the cityscape from the beginning? Later you will find it out at the <strong>Urban Planning Exhibition Hall</strong> after lunch. </p>
<p>In the afternoon, take an easy walk along the <strong>French Concession</strong> and your private driver will drop you off at <strong>Nanjing Road</strong> where you may go for free exploration. (Or any other places you wish)
</p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p>- Most tourists arrive at the Yuyuan Garden at about 10am, an early visit at about 8am will get the whole garden all to yourself.</p>
</div>
<p><img src="/image/tour/the-bund-at-night.jpg" class="img-responsive" alt="Glamorous night of the Bund in Shanghai"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 8</span>Shanghai - Hanoi (2h20min by air)</div>
<p> Have a free morning in Shanghai. After lunch on your own, you will fly to Hanoi. Meet up with your private tour guide and transfer and get to your hotel for relaxing time. </p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p> - There is no time difference between China and Vietnam.</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 9</span>Hanoi - Halong Bay (3 hours by car)</div>
<p>After a fresh coffee and breakfast, you will be on the way to <strong>Halong Bay</strong>. No rip to Vietnam is complete until you cruise Halong Bay. An overnight is indispensable as the bay itself is boundless and needs at least one day and one night to take in as much as possible. </p>
<p>When you arrive at the pier, board the cruise and enjoy the rest of today in amazing vistas. </p>
<p>Your Halong Bay cruise will take you to Cua Van Fishing Village, Vung Vieng Fishing Village, Me Cung Caves, Virgin Cave, and Surprise Cave, as well as some small islets, such as Flight Cock Islet, Human Head Islet, and Toad Islet etc (subject to different itineraries of different boats).</p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p>- Most cruise junks have their own transfer between Hanoi and Halong Bay, however, we prefer to drive you there by ourselves so as you may just kick back in a nap en route without worrying how to board with those large suitcases. <br />
- The cruise serves a seafood-based menu. We will need your beforehand notice for otherwise arrangement if you have any food allergies.
</p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 10</span>Halong Bay - Hanoi (3 hours by car) - Danang (1 1/2 hours by air) - Hoi An (1/2 hour by car) </div>
<p>The cruise ends at around 11am after brunch. </p>
<p>Meet again with your private tour guide and driver at the pier and they will take you to the airport. Fly to Danang, drive down to Hoi An and check in hotel.</p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 11</span>Hoi An</div>
<p>A quiet little town, Hoi An has a lot to offer: take a walk to visit the <strong>Japanese Covered Bridge</strong>, <strong>Fukian Assembly Hall</strong> and <strong>Old House of Tan Ky</strong>. History just comes alive with your insightful tour guide's narration. After lunch at a local restaurant, try out something new at a workshop and <strong>learn how to make paper lanterns</strong>.</p>
<p><img src="/image/tour/the-japanese-covered-bridge-in-hoi-an-banner.jpg" class="img-responsive" alt="Learn the history of the Japanese Covered Bridge in Hoi An"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 12</span>Hoi An - Danang (1/2 hour by car) - Nha Trang (1h10min by air)</div>
<p> Enjoy some free time in Hoi An and then you will fly to Nha Trang, one of the best beach destinations in Vietnam. </p>
<p> Check in hotel and free your mind in the crystal-clear ocean. </p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 13 & 14</span>Nha Trang</div>
<p> Enjoy yourself on the beach of Nha Trang. </p>
</div>
<p><img src="/image/tour/colorful-fishing-boat-on-nha-trang-beach-banner.jpg" class="img-responsive" alt="A colorful fishing boat on the beach of Nha Trang"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 15</span>Nha Trang - Ho Chi Minh City (55min by air)</div>
<p>After breakfast, fly to the charming city of Ho Chi Minh City, formerly known as Saigon. Everything is settled down in the hotel and your private tour guide will take you to lunch at a local restaurant. </p>
<p>In the afternoon, you will take a city highlights tour including <strong>Reunification Palace</strong>, <strong>Notre Dame Cathedral</strong>, <strong>Post Office</strong> and <strong>Benh Thanh Market</strong>. </p>
<p><img src="/image/tour/cityscape-of-ho-chi-minh-city.jpg" class="img-responsive" alt="Downtown of Ho Chi Minh City"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 16</span>Ho Chi Minh City - Cu Chi Tunnels (2 hours by car) - Can Tho (3 hours by car)</div>
<p><strong>Cu Chi Tunnels</strong> is one of the most interesting attractions in Ho Chi Minh City for its mind-provoking historic background and chance for some close-up experience. After breakfast, you will hit the road to this site with a preface by your tour guide. The underground system provided the Viet Cong with space to live, shelter, and battle base during the war with the US. Duck in one of the tunnels to get a hint. </p>
<p> After a simple lunch, you will be taken to the Mekong Delta to its capital town of Can Tho. Check in hotel and stay overnight.</p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p>- One-way drive from Ho Chi Minh City to the Mekong Delta takes about 4 hours, which means, if you choose to do the Mekong Delta trip within one day, no matter how early you leave the city, you will reach the delta in the afternoon with not much to see and the floating market business would have been over. Thats why we add one day in Can Tho so you can easily tour the Mekong the next morning. </p>
</div>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 17</span>Can Tho - Mekong Delta (1/2 hour by boat) - Ho Chi Minh City (4 hours by car)</div>
<p>Unlike the overland markets, <strong>Cai Rang Floating Market</strong> in Can Tho opens at 5am, or even earlier. All boats will hang up a piece of merchandises on a pole at the front of the boat, as an ad sign. Farm workers will be busy loading the goods while the orchard owners are calculating numbers with their retailers. This wholesale market presents its best before 8am. And later, we will have boat trip to some small islands and visit a local orchard for lunch. </p>
<p> Drive back to Ho Chi Minh City in the afternoon. </p>
<p><img src="/image/tour/bustling-floating-market-on-the-mekong-delta-banner.jpg" class="img-responsive" alt="Cai Rang Floating Market at its busiest hour"></p>
</div>
<div class="peggiebox">
<div class="tourDates"><span class="tourDays">Day 18</span>Ho Chi Minh City Departure</div>
<p> After this long journey, you must be missing home. Today your private tour guide and transfer will escort you to the airport. Have a safe flight and hope to see you again soon! </p>
<div class="peggiebox" style="padding-left:10px; padding-right:10px; padding-bottom:10px;">
<span style="padding-left:5px;padding-right:5px; padding-bottom:5px;font-weight:bold; font-size:15px;">Good to know:</span>
<p> - You can meet very determined vendors around the market with aggressive selling tactics;, just turn away and say no if you dont want anything. <br/>
- In Phu Quoc Island, we will arrange for someone to collect you at the airport. You will meet your tour guide again in a few days in Ho Chi Minh City. </p>
</div>
</div>
<h2 class="HotelUes"><a id="handpickeds" name="handpickeds"></a>Asia Highlights Handpicked Hotels</h2>
<p>Asia Highlights chooses hotels with a balanced mixture of traditional Vietnamese style and modern comfort, easy access to everything yet quiet enough for a good night's sleep. </p>
<div class="row">
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/beijing-red-wall-garden-hotel-room.jpg" alt="Room of Red Wall Garden Hotel in Beijing" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Beijing - <strong> Red Wall Garden Hotel</strong></span>
<p>- Travelers' Choice 2016 by TripAdvisor, ranking 9/5,551.<br />
- In the Hutong area, traditional courtyard style. <br />
- Close to Wangfujing Sreet, soft bed, English channels and in-room wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/xian-tang-dynasty-art-garden-hotel-room.jpg" alt="Room Tang Dynasty Art Garden Hotel in Xi'an" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Xi'an - <strong> Tang Dynasty Art Garden Hotel</strong></span>
<p>- Winner of Certificate of Excellence on TripAdvisor, ranking 23/2,189.<br />
- By the Big Wild Goose Pagoda, nice location. <br />
- Traditional Chinese garden setting, free music show at night, friendly staff speaking good English and nice rooms. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/shanghai-urbn-hotel-shanghai-dinner.jpg" alt="Dinner setting of URBN Hotel Shanghai" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Shanghai - <strong> URBN Hotel Shanghai </strong></span>
<p>- Travelers' Choice 2016 by TripAdvisor, ranking 29/4,062.<br />
- Near Nanjing Road, 30 minutes to the Bund by walk. <br />
- Eco-friendly, post-modern style with a Chinese touch, soft bed, western-style services and lovely garden. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hanoi-apricot-hotel-room.jpg" alt="Room of Apricot Hotel Hanoi" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hanoi - <strong> Apricot Hanoi Hotel </strong></span>
<p>- Travelers' Choice 2016 by TripAdvisor, ranking 97/540.<br />
- By the Hoan Kiem Lake, 15 minutes to the Old Quarter. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/halong-bay-cruise-indochina-sails-cabin.jpg" alt="Cabin of Indochina Sails" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Halong Bay - <strong>Indochina Sails</strong></span>
<p>- Serving westerners since 2007, TripAdvisor ranking 3/159.<br />
- Big boats easing sea-sickness and big cabins. <br />
- Cruising the less-touristy Bai Tu Long Bay and get a bird-eye view of the whole bay at Titov Island. <br />
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hoi-an-anatara-hoi-an-resort-balcony.jpg" alt="Balcony of Anatara Hoi An Resort" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Hoi An - <strong>Anantara Hoi An Resort</strong></span>
<p>- Travelers' Choice 2016 on TripAdvisor, ranking 27/115.<br />
- By the riverbank, 20 minutes to the ancient town. <br />
- Late-colonial-style, large swimming pool, well-noted restuarant, in-room wifi and friendly staff. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/nha-trang-mia-nha-trang-resort-room.jpg" alt="Ocean view from the room of Mia Nha Trang Resort" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Nha Trang - <strong>Mia Resort Nha Trang</strong></span>
<p>- Travelers' Choice 2016 on TripAdvisor, ranking 1/160.<br />
- By the beach, has cliff villas and featured condos. <br />
- Tropical garden setting, delicate cuisine, spacious rooms, good staff and in-room wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/hcmc-villa-song-room.jpg" alt="Room of Villa Song Saigon in Ho Chi Minh City" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Ho Chi Minh City - <strong>Villa Song Saigon</strong></span>
<p>- Travelers' Choice 2016 on TripAdvisor, ranking 1/412.<br />
- By the Saigon River, 10 minutes by car to downtown. <br />
- Colonial-style deco, spacious rooms, fresh seafood buffet breakfast and free in-room wifi. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-7 col-sm-7 hidden-xs hotelImage"><img src="/image/tour/tour-hotel/can-tho-victoria-can-tho-resort-room.jpg" alt="Room of Can Tho Victoria Resort" class="img-responsive"></div>
<div class="col-md-17 col-sm-17 col-xs-24">
<div class="HotelInfo">
<span class="HotelName">Can Tho - <strong>Victoria Can Tho Resort</strong></span>
<p>- Travelers' Choice 2016 by TripAdvisor, ranking 1/45.<br />
- Luxury facility in a tranquil setting by the river. <br />
- Comfortable and stylish rooms, nice restaurants with a French menu, wifi and a large swimming pool. </p>
</div>
</div>
<div class="clearfix"></div>
<div class="peggiebox">
<p><strong>Note:</strong> Your comfort counts! It's totally possible to change hotels based on your interests and budget. From guesthouses to high-end luxury resorts, just let us know your preferences and we will help you choose. </p>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-24">
<div class="inpageNav hidden-xs">
<ul>
<li><a href="#summary">Summary</a></li>
<li><a href="#itinerary">Suggested Itinerary</a></li>
<li><a href="#handpickeds">Handpicked Hotels</a></li>
</ul>
</div>
<div class="tourBox">
<ul class="tourList">
<li>Duration: 18 days (approx.) </li>
<li>Tour Code:AH-4 </li>
<li>Tour Type: Private Tours</li>
</ul>
<div class="promoPrice"><span class="moneyfrom">From:</span> <span class="moneyTyp">$</span><span class="bestPrice">3,499</span> <a class="priceLink" href="#price">Price details</a></div>
<div class="letterrow"> Book This Tour</div>
<div class="departTime"><span class="title"><span class="glyphicon glyphicon-calendar"></span> Departure Date:</span>
<input value="" name="Starting_Date" id="Starting_Date" class="depart hasDatepicker">
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller"><span class="title"> Adults(18+):</span>
<select id="Adults_Num" name="Adults_Num">
<option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="traveller"><span class="title">Kids(<12):</span>
<select id="Adults_Num" name="Adults_Num">
<option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option> </select>
</div>
</div>
</div>
<div class="bookTour"></div>
<span class="bookTour">
<input type="submit" value="Send" class="bookTour">
</span> </div></div>
</div></div>
<!--#include virtual="/aspbackup/inc/footer.asp" -->
</body>
</html>

@ -0,0 +1,109 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div class="InformationDetail">
<div class="container InfoDetail">
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>Privacy Statement</h1></div>
<div class="col-md-19 col-sm-19 col-xs-24 Information pull-right">
<p>This privacy statement applies to http://www.asiahighlights.com owned and operated by CHINA HIGHLIGHTS INTERNATIONAL TRAVEL SERVICE CO., LTD(China Highlights). This privacy statement describes how Asia Highlights collects and uses the personal information you provide on our Website:www.asiahighlights.com. It also describes the choices available to you regarding our use of your personal information and how you can access and update this information.</p>
<h2>Collection and Use of Personal Information</h2>
<p>We collect the following personal information from you</p>
<ul class="InfoList">
<li>Contact Information such as name, email address, mailing address, nationality, phone number, zip code</li>
<li>Billing Information such as credit card number, and billing address</li>
<li>Unique Identifiers such as user name, account number</li>
<li>Passport and Visa data</li>
</ul>
<p>As is true of most Web sites, we automatically gather information about your computer such as your IP address, browser type, referring/exit pages, and operating system. In addition, we may use website analytics tools, or other technologies, like cookies and web beacons, to collect information about your visit to the Sites, including the pages you view, the links you click and other actions taken in connection with the Sites and services. We do not link this automatically collected data to other information we collect about you.</p>
<p>We use this information to</p>
<ul class="InfoList">
<li>Respond to customer service &amp; offer requests</li>
<li>Administer your account</li>
<li>Improve our Web site and marketing efforts</li>
<li>To obtain airline tickets and hotel bookings &amp; to apply for travel permits in certain regions in Asia, such as China (Tibet, Hong Kong and Macau) and Myanmar. </li>
<li>To design a fabulous trip to your best interests</li>
<li>Send our latest newsletter to you as your request</li>
</ul>
<h2>Information Obtained from Third Parties
</h2>
<p>If you provide us personal information about others, or if others give us your information, we will only use that information for the specific reason for which it was provided to us.</p>
<h2>Information Sharing</h2>
<p>We will share your personal information with third parties only in the ways that are described in this privacy statement. We do not sell your personal information to third parties.</p>
<p>We may provide your personal information to companies that provide services to help us with our business activities such as shipping your order or offering customer service or booking air tickets. These companies are authorized to use your personal information&nbsp;<em>only as necessary to provide</em>&nbsp;these services to us.</p>
<p>We may also disclose your personal information</p>
<ul class="InfoList">
<li>as required by law such as to comply with a subpoena, or similar legal process</li>
<li>when we believe in good faith that disclosure is necessary to protect our rights, protect your safety or the safety of others, investigate fraud, or respond to a government request,</li>
<li>if Asia Highlights is involved in a merger, acquisition, or sale of all or a portion of its assets, you will be notified via email and/or a prominent notice on our Web site of any change in ownership or uses of your personal information, as well as any choices you may have regarding your personal information,</li>
<li>to any other third party with your prior consent to do so.</li>
</ul>
<h2>Cookies and Other Tracking Technologies</h2>
<h3 class="Article">Cookies</h3>
<p>A cookie is a small text file that is stored on a user&rsquo;s computer for record-keeping purposes. We use cookies on this site. We link the information we store in cookies to any personal information for consistency you submit while on our site.</p>
<p>We use both session ID cookies and persistent cookies. We use session cookies to make it easier for you to navigate our site. A session ID cookie expires when you close your browser. A persistent cookie remains on your hard drive for an extended period of time. You can remove persistent cookies by following directions provided in your Internet browser&rsquo;s &ldquo;help&rdquo; file.</p>
<p> We use cookie in our order forms and account login pages, we set a persistent cookie to store the check in/out date selection, password and some information that you filled, so you don&rsquo;t have to enter it more than once. Persistent cookies also enable us to track and target the interests of our users to enhance the experience on our site.</p>
<h3 class="Article">Tracking Technologies & Third Party Cookies</h3>
<p>Technologies such as: cookies, beacons, tags and scripts are used by China Highlights and our partners, affiliates, or analytics or service providers. These technologies are used in analyzing trends, administering the site, tracking users&rsquo; movements around the site and to gather demographic information about our user base as a whole. We may receive reports based on the use of these technologies by these companies on an individual as well as aggregated basis.</p>
<p> We use cookies for our booking forms, to remember users&rsquo; basic information (e.g. name, email), for authentication. Users can control the use of cookies at the individual browser level. If you reject cookies, you may still use our site, but your ability to use some features or areas of our site may be limited.</p>
<h3 class="Article">Flash LSOs</h3>
<p align="left">We use local storage objects (LSOs) such as HTML5 and Flash to store content information and preferences [or other uses]. Third Parties, with whom we partner to provide certain features on our site or to display advertising based upon your Web browsing activity, use LSOs such as HTML5 and Flashto collect and store information.</p>
<p> Various browsers may offer their own management tools for removing HTML5 LSOs. To manage Flash LSOs please click here: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html.</p>
<h3 class="Article">Behavioral Targeting</h3>
<p>We partner with a third party to either display advertising on our Web site or to manage our advertising on other sites. Our third party partner may use technologies such as cookies to gather information about your activities on this site and other sites in order to provide you advertising based upon your browsing activities and interests.&nbsp; </p>
<p>If you wish to not have this information used for the purpose of serving you interest-based ads, you may opt-out by clicking&nbsp;<a href="http://preferences-mgr.truste.com/" target="_blank">here</a>&nbsp;. Please note this does not opt you out of being served ads.&nbsp; You will continue to receive generic ads.</p>
<h3 class="Article">Links to Other Web Sites</h3>
<p>Our Site includes links to other Web sites whose privacy practices may differ from China Highlights. If you submit personal information to any of those sites, your information is governed by their privacy statements. We encourage you to carefully read the privacy statement of any web site you visit.</p>
<h3 class="Article">Security</h3>
<p>The security of your personal information is important to us. When you enter sensitive information (such as credit card number) on our website (www.chinahighlightstravel.com), we encrypt the transmission of that information using secure socket layer technology (SSL).<br>
We follow generally accepted industry standards to protect the personal information submitted to us, both during transmission and once we receive it. No method of transmission over the Internet, or method of electronic storage, is 100% secure, however. Therefore, we cannot guarantee its absolute security.<br>
If you have any questions about security on our Web site, you can contact us at <u><a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a></u>.</p>
<h2>Additional Policy Information</h2>
<p align="left">Our Web site includes Widgets, which are interactive mini-programs that run on our site to provide specific services from another company (e.g. send the free e-cards, watch the videos, etc). Personal information, such as your email address, may be collected through the Widget. Cookies may also be set by the Widget to enable it to function properly. Information collected by this Widget is governed by the privacy policy of the company that created it.</p>
<p align="left">The profile you create on our site will be publically accessible unless otherwise indicated.&nbsp; You may change the privacy settings of your profile through your account. If you think that an unauthorized profile has been created about you, please contact us at&nbsp;<a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a>&nbsp;to request for removal.</p>
<p align="left">You can link to our site using social networking services such as Facebook, Twitter, TripAdvisor, Lonelyplanet and Wiki. These services will authenticate your identity and provide you the option to share certain personal information with us such as your sign-in information, name and email address to link between the sites. Services like Facebook &amp; Twitter give you the option to post information about your activities on this Web site to your profile page to share with others within your network.</p>
<p> Tell-A-Friend: If you choose to use our referral service to tell a friend about our site or send free e-cards to your friends, we will ask you for your friend&rsquo;s name and email address.&nbsp; We will automatically send your friend a one-time email inviting him or her to visit the site. Asia Highlights stores this information for the sole purpose of sending this one-time email and tracking the success of our referral program. Your friend may contact us at <a href="mailto:contact@asiahighighlights.com">contact@asiahighlights.com</a> to request that we remove this information from our database.</p>
<p> With your consent we may post your testimonials, questions and reviews along with your name.&nbsp; If you want your testimonials, questions and reviews removed please contact us at Asia Highlights, <u><a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com.</a></u></p>
<h2>Correcting and Updating Your Personal Information</h2>
<p>To review and update your personal information to ensure it is accurate, you may contact us directly at&nbsp;<a href="mailto:service@chinahighlights.com">contact@asiahighlights.com</a>. We will respond to your request within a reasonable timeframe.<br>
We will retain your information for as long as your account is active or as needed to provide you services. If you wish to cancel your account or request that we no longer use your information to provide you services contact us at contact@asiahighlights.com. We will retain and use your information as necessary to comply with our legal obligations, resolve disputes, and enforce our agreements.</p>
<h2>Choice/Opt-Out</h2>
<p>You may choose to stop receiving our newsletters by the unsubscribe instructions contained in the each newsletter that we sent, or go to our newsletter page on our website, logging into your account and updating your selections or you can contact us at Asia Highlights, <u><a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com.</a></u></p>
<p>We also allow you to create an account, and share information such as messages, questions, comments, &amp; travel experience with others.</p>
<h2>Notification of Privacy Statement Changes</h2>
<p>We may update this privacy statement to reflect changes to our information practices. If we make any material changes we will notify you by email (sent to the e-mail address specified in your account) or by means of a notice on this Site prior to the change becoming effective. We encourage you to periodically review this page for the latest information on our privacy practices.</p>
<h2>Our Contact Information</h2>
<p>You can contact us about this privacy statement by writing or email us at the address below:<br>
<strong>China Highlights, Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, China 541004</strong><br>
<strong>Email:</strong><u><a href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a></u></p>
</div>
<div class="col-md-5 col-sm-5 col-xs-24 pull-left">
<ul class="ArticleList">
<li class="ListTop"><a href="/about-us/">About Us</a></li>
<li><a href="/terms-of-use.htm">Terms of Use</li>
</ul>
</div>
</div>
</div></div>
<!--#include virtual="/aspbackup/inc/footer.asp" -->
</body>
</html>

@ -0,0 +1,147 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/tour-detail.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div class="InformationDetail">
<div class="container InfoDetail">
<div class="row">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>Terms of Use</h1></div>
<div class="col-md-19 col-sm-19 col-xs-24 Information pull-right">
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-24">
<ul class="InfoList">
<li><a href="#payment">Payment</a></li>
<li><a href="#cancellation">Cancellation Refund</a></li>
<li><a href="#alteration">Alteration of Itinerary</a></li>
<li><a href="#documentation">Travel Documents</a></li>
</ul></div><div class="col-md-8 col-sm-8 col-xs-24">
<ul class="InfoList">
<li><a href="#health">Health Requirements</a></li>
<li><a href="#insurance">Insurance</a></li>
<li><a href="#complaints">Complaints and Claims</a></li>
<li><a href="#communications">Communication</a></li>
</ul></div>
<div class="col-md-8 col-sm-8 col-xs-24">
<ul class="InfoList">
<li><a href="#responsibility">Liability and Responsibility</a></li>
<li><a href="#modification">Modification or Discontinuance of Service&nbsp;</a></li>
</ul></div></div>
<h2 class="RedBorder">1. Payment<a id="payment" name="payment"></a></h2>
<h3 class="Article">Deposit & Final payment</h3><p>A deposit which is equal to 10% of the total tour cost is required at the time of booking. The full or final payment is required 30 days before departure for your Asia tour. Should the tour booked within 30 days before departure for your Asia tour, full payment is required.</p>
<p align="left">Receipt of your deposit or final payment will indicate that you and your travel agent (when applicable) have read these Terms and Conditions, and that you (and your agent) have accepted them.</p>
<p>The Terms and Conditions below form the basis of the contractual relationship between China Highlights International Travel Service Co.,LTD (Business Certificate Number: L-GX00724) and its clients. It is extremely important that our clients understand and accept these Terms and Conditions as well as their quotations, itineraries and other relevant communication from our travel advisors.</p>
<h3 class="Article">Methods of Payment
</h3>
<p>We are now able to offer 2 methods of Payment:</p>
<ol>
<li><p>Visa or Master Card secure online payment via PayPal.</p></li>
<p>When you receive our proposal with quotation, In the email body, you will see a &quot;PAY NOW&quot; symbol, just click the Visa/Master Card PAY NOW symbol on the email payment request and you will be taken to the secure PAYPAL web site to make payment. If you are a PAYPAL member simply follow the usual system. If you are not a member it's easy to join and it's free!<br>
<a href="https://www.paypal.com/row/mrb/pal=JE4VX9SSVGTVN" target="_blank"><img border="0" width="32" height="32" src="info-detail-wendy-2_clip_image001.gif" alt="Sign up for PayPal and start accepting credit card payments instantly."></a> <br>
Or if you can pay us online to our paypal account directly at&nbsp;<strong>pays@chinahighlights.com</strong>&nbsp;after logging in your account at www.paypal.com&nbsp;<br>
<br>
Note: When either PayPal or Asia Highlights Travel has reason to believe that the payment you made is fraudulent, we reserve the right to hold your bookings and require another method of payment.</p>
<li><p>Wire transfer.</p></li>
<p>If you are booking your tour 30 days before your departure date, you may choose to make the payment by wire transfer.</p>
</ol>
<p><strong>Important Notes for those who make the payment through wire transfer:</strong></p>
<ol><li><p>Please include your tracking code on the transfer sheet when you are making wire transfer in the bank.</p></li>
<li><p> After you have made the wire transfer in your bank, please send us a copy of the transaction receipt or stub issued by the bank, write down your tracking code on the copy via email or fax (Fax no.&nbsp;<strong>86-773-2885309</strong>). Once we have received your payment email or fax, we will start to secure your booking.</p></li>
<li><p>It may take up to 3-10 days for your payment to reach our account.</p></li></ol>
<h3 class="Article">Our Bank Information for Wire transfer/Bank Transfer</h3>
<p><strong>Our Bank Account</strong>&nbsp;(For clients from outside of China)<strong>:</strong> <br>
<strong>Beneficiary</strong>: CHINA HIGHLIGHTS INTERNATIONAL TRAVEL SERVICE CO., LTD<br>
<strong>Address:</strong>&nbsp;China Highlights/ Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, China 541004<br>
<strong>Phone:</strong> 86-773-2831999 (all)<br>
<strong>Bank Name</strong>: Bank of Communications Guilin Branch<br>
<strong>Bank Address</strong>: 8 Nanhuan Road, Guilin, Guangxi, P.R.China<br>
<strong>Acct#</strong>: 453801000018010106940<br>
<strong>SWIFT NUMBER</strong>: COMMCNSHGLN (Please use this if your bank requires ID or Beneficiary Bank, Routing)&nbsp;<br>
<strong>CNAPS Number</strong>: 301617000010 (necessary if the wire transfer is in Chinese currency/CNY)<br>
<strong>Branch Number</strong>: 301617000028&nbsp;<br>
<strong>Post Code</strong>: 541002<br>
<strong>ABA Number</strong>: 026-012-629</p>
<p><strong>Note:</strong> Cash payment, travelers' check and company check is applicable upon special request, but personal checks cannot be accepted.</p>
<h2 class="RedBorder">2. Cancellation Refund<a id="cancellation" name="cancellation"></a></h2>
<p>We would deeply regret your decision to cancel your trip to Asia, however we realize that there are many valid reasons that this can happen.</p>
<p><strong>The cancellation fee will be calculated as follows:</strong></p>
<ul class="InfoList">
<li>Cancellation received up to 30 days before departure: 10% of the tour price&nbsp; excluding penalties if applicable, charged by hotels, airlines and rail. All penalties will be itemized.</li>
<li>Cancellation received from 29 to 15 days before departure: 20% of the tour price excluding penalties if applicable, charged by hotels, airlines and rail. All penalties will be itemized.</li>
<li>Cancellation received from 14 to 7 days before departure: 40% of the tour price&nbsp; excluding penalties if applicable, charged by hotels, airlines and rail. All penalties will be itemized.</li>
<li>Cancellation received from 6 to 0 days before departure: 100% of the tour price </li>
<li>No-show travelers will be charged 100% of the tour price. </li>
</ul>
<p><strong>Special Notes</strong> </p>
<p> The terms for cancellation for tours of more than10 people may vary from case to case. Please ask you travel advisor regarding the cancellation policy for a group of over 10 people.</p>
<h2 class="RedBorder"> 3. Alteration of Itinerary<a id="alteration" name="alteration"></a></h2>
<p>Alterations to your itinerary before the booking are happily processed free of charge. Alterations after payment of the deposit will attract a fee of $25.00 per request.&nbsp;<strong>All expenses incurred</strong>&nbsp;by Asia Highlights in alteration of the booking are the responsibility of the customer. This includes all fees and charges levied by third parties such as cruise operators, airlines and hotels.</p>
<h2 class="RedBorder">4. Travel Documentation<a id="documentation" name="documentation"></a></h2>
<p>All clients must be in possession of a valid passport and necessary visas or permits at the commencement of travel. All such documentation is the sole responsibility of the client. Your travel advisor may assist you in applying for the necessary travel documentation upon request. Asia Highlights accepts no responsibility or liability whatsoever for the failure of clients to obtain appropriate documentation.</p>
<h2 class="RedBorder">5. Health Requirements<a id="health" name="health"></a></h2>
<p>Clients should take into account all international travel risks and familiarize themselves with health requirements applicable to the areas they intend to visit. The client is solely responsible for checking the safety and security conditions, vaccination, and other health requirements of governments in countries visited or transited. </p>
<h2 class="RedBorder">6. Insurance<a id="insurance" name="insurance"></a></h2>
<p>We highly recommend that you purchase full coverage travel insurance from you country of origin.</p>
<h2 class="RedBorder">7. Complaints and Claims<a id="complaints" name="complaints"></a></h2>
<p>Shall you feel unsatisfied with any service Asia Highlights has provided, please notify your 7x24 hours available travel advisor or Asia Highlights Customer-care service (Phone no. 86-773-2582653) to avoid the potential for similar problems happening again during your trip.</p>
<p>
In the event of a complaint or claim for compensation, you must inform us by email, regular mail, or facsimile in writing within 15 days from the end of your tour. Relevant receipts and substantiating evidence must be attached to the letter of claim. Asia Highlights will not be liable for any claims made later than 15 days after the completion of your tour.</p>
<h2 class="RedBorder">8. Communications<a id="communications" name="communications"></a></h2>
<p align="left">You can contact Asia Highlights via the web form from&nbsp;<a href="http://www.asiahighlights.com">www.asiahighlights.com</a>, email, fax, or phone. If for any reason, you fail to receive any reply from Asia Highlights in regard of your tour status within 48 hours from the time you submitted the request for booking, modifying, or canceling a tour, please contact our customer service center at <a href="mailto:supervisor@asiahighlights.com">supervisor@asiahighlights.com</a>&nbsp;or phone at&nbsp;<strong>86-773-2582653</strong> immediately to ensure that we are able to deal with your enquiry under the terms of our Terms and Conditions.&nbsp;<a href="/contact-us/">Contact Us Form</a></p>
<h2 class="RedBorder">9. Liability & Responsibility<a id="responsibility" name="responsibility"></a></h2>
<p>Asia Highlights provides tour information and Asia tour bookings. Asia Highlights publishes travel information and services gathered from the selected quality hotels, air ticket agencies and tour companies &amp; operators. Asia highlights will not be responsible for errors, emissions or inaccuracies in information provided by third party providers.</p>
<p>Asia Highlights shall not be responsible for any wrongful or negligent or fraudulent, omissions, changes of itinerary, cancellation or the failure of any equipment operated by those suppliers or any other party not directly owned or controlled by Asia Highlights.</p>
<p> Asia Highlights shall not be liable for any loss, injury, or damage to person or property, alteration of itineraries or cancellation in part or in full, caused by climatic conditions, sea fire, breakdown of machinery or equipment, acts of government or other authorities, wars whether or not declared, civil disturbances, strikes, riots, thefts, epidemics, quarantines, medical or customs regulations, terrorist activities, or any other actions, omissions or conditions beyond Asia Highlights's control. Neither Asia Highlights nor any of its affiliates or subsidiaries shall be or become liable or responsible for any additional expenses of liability sustained or incurred by the tour member as a result of any of the aforementioned causes.</p>
<p> Asia Highlights is not responsible for a client's failure to comply with customs regulations.</p>
<p> Asia Highlights is not responsible for the theft or loss of any customer's valuables or items of personal property due to the negligence of the customer.</p>
<p> Asia Highlights reserves the right to substitute hotels, flights, trains, or cruise ships, to alter itineraries, or to cancel the tour prior to departure. If Asia Highlights has cancelled any tour prior to the commencement of the tour, Asia Highlights is liable for a full refund of the money received from the client.</p>
<p> Many of Asia Highlights tour packages include activities which require care and attention. Such activities include boarding and going ashore from boats, climbing hills and entering and exiting tombs and caves etc. You will receive help and advice from our representatives but all activities are undertaken at your own risk. Asia Highlights, its employees and agents cannot be responsible for any action or event that occurs after its said employees and agents have exercised their duty and taken the necessary care.</p>
<p> Asia Highlights reserves the right to modify or rescind the terms and conditions in whole, or in part at any time with or without notice.</p>
<h2 class="RedBorder">10. Modification or Discontinuance of Service<a id="modification" name="modification"></a></h2>
<p>Asia Highlights reserves the right to modify or discontinue service to clients who behave illegally or objectionably toward its employees and agents. Offensive behavior includes behavior which is obscene, racially offensive or of a sexual nature.</p>
</div>
<div class="col-md-5 col-sm-5 col-xs-24 pull-left">
<ul class="ArticleList">
<li class="ListTop"><a href="/about-us/">About Us</a></li>
<li><a href="/privacy.htm">Priacy Policy</li>
</ul>
</div>
</div>
</div></div>
<!--#include virtual="/aspbackup/inc/footer.asp" -->
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save