14 Day Spanish Splendours & Italian Gems
Ship: Ovation
Departure date: 23rd October, 2019
- Barcelona & Palma de Mallorca, & Menorca Spain
- Sete & Le Lavandou, France
- Portoferraio (Elba) & Livorno (Florence/ Pisa), Italy
- Monte Carlo, Monaco
- La Joliette (Marseille) & St Tropez & Corsica, France
-
Civitavecchia (Rome), Naples (Pompeii/ Amalfi), Messina, Italy
-
Valletta, Malta
14 Day Vietnam & Thailand
Ship: Ovation
Departure date: 4th January 2020
- Hong Kong, China
- Halong Bay, Vietnam
- Da Nang (Hue), Vietnam
- Ho Chi Minh City (Saigon), Vietnam
- Sihanoukville, Cambodia
- Koh Kood, Thailand
- Laem Chabang (Bangkok), Thailand
- Singapore
7 Day Gems of Italy & Greece
Ship: Encore
Departure date: 14th October 2019
- Civitavecchia (Rome), Italy
- Naples (Pompeii/ Amalfi), Italy
- Messina, Italy
- Crotone, Italy
- Kerkira (Corfu), Greece
- Katakolon (Olympia), Greece
- Nafplion, Greece
- Piraeus (Athens), Greece
14 Day Exotic Caribbean in-depth
Ship: Odyssey
Departure date: 7th December 2019
- Bridgetown, Barbados
- Port Elizabeth, St Vincent & The Grenadines
- Trois llets, Martinique & Basse-Terre, Guadeloupe
- Charlestown & Carambola Beach, St Kitts & Nevis
- St Johns, Antigua & Barbuda & Philipsburg, Sint Maarten
- Sopers Hole, British Virgin Islands
- Gustavia, Saint Barthelemy & Basseterre, St Kitts & Nevis
- Terre-de-Haut, Guadeloupe & Castries, Saint Lucia
18 Days Jewels of Arabia & India
Ship: Encore
Departure date: 9th November 2019
- Dubai, UAE
- Sir Bani Yas Island, UAE
- Doha, Qatar
- Muscat, Oman
- Mumbai (Bombay), India
- Mangalore, India
- Cochin, India
- Sabang, Pulau Weh, Indonesia
- Phuket, Thailand
- Porto Malai, Langkawi, Malaysia
- Singapore
12 Day Gems of The Leeward Islands
Ship: Sojourn
Departure date: 4th November 2019
- Miami, Florida
- San Juan, Puerto Rico
- Gustavia, Saint Barthelemy
- Terre-de-Haut, Iles des Saintes, Guadeloupe
- Fort-de-France, Martinique
- St Johns, Antigua & Barbuda
- Carambola Beach, St Kitts & Nevis
- Great Harbour, Jost Van Dyke, British Virgin Islands
- Miami, Florida
// Replace the Salesforce submission with Kentico data submission
$(‘#newsletter-form-‘ + 92 + ‘ form’).on(‘submit’, function (event) {
event.preventDefault();
let formData = {
//Title: $(‘#salutation’).val(), // Replace with the actual ID of the Title input field
FirstName: $(‘#first_name’).val(), // Replace with the actual ID of the FirstName input field
LastName: $(‘#last_name’).val(), // Replace with the actual ID of the LastName input field
Email: $(‘#email’).val(), // Replace with the actual ID of the Email input field
Country: $(‘#country’).val(), // Replace with the actual ID of the Country input field
};
console.log(“formData: “, formData);
$.ajax({
url: “/NewsletterForm/Submit”, // Update with your actual controller and action
method: “POST”,
data: formData,
success: function (data) {
// Handle success, e.g., display a success message
console.log(“Form submitted successfully!”);
console.log(“Returned JSON:”, data); // Log the returned JSON data
$(‘#newsletter-form-‘ + 92 + ‘ .title’).hide();
Cookies.set(‘NewsletterDismissed’, true, { path: ‘/’ });
setTimeout(function () {
$(‘#newsletter-popup’).removeClass(‘active’);
$(‘body’).removeClass(‘mask’);
}, 2000);
window.location.replace(“/en-gb/thank-you-for-signing-up-to-our-newsletter”);
},
error: function (error) {
// Handle error, e.g., display an error message
console.log(‘Error submitting form:’, error);
}
});
});