<% @ Language=VBScript LCID=2057 %> <% Option Explicit %> <% Dim Conn, SQL, RS, Searchform_SQL, Searchform_StartDate, Searchform_Deppt, Searchform_Arppt, Airports, ArrArpptNames, Arppts_i, ThisDate, LastDate Dim ThisSelected, i, j, k, x, RowLimit, ThisMonth, LastMonth, IsAvailable, TempArr, CurCol, Months, ThisYear, ThisAirport, LastAirport, NextAirport Dim Season1, Season2, DisplaySeason, ThisURL Season1 = DatePart("yyyy", Now()) & "-" & Right("00" & DatePart("m", Now()), 2) & "-" & Right("00" & DatePart("d", Now()), 2) Season2 = "2010-05-01" ' Find default search details... Searchform_StartDate = DateAdd("d", Now(), 7) Searchform_Deppt = "LGW" Searchform_Arppt = "Sharm El Sheikh" Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open LatesDatabase ' Is this property available? IsAvailable = "N" DisplaySeason = "Winter" If (Request.QueryString("Season") = "Winter") Or (Request.QueryString("Season") = "") Or (InStr(Request.ServerVariables("SCRIPT_NAME"), "winterholidays")) Then Session("CurrentSeason") = "Winter" If (Request.QueryString("Season") = "Summer") Or (Session("CurrentSeason") = "Summer") Or (InStr(Request.ServerVariables("SCRIPT_NAME"), "summerholidays")) Then SQL = "SELECT * FROM Libra_Lates.AVLABL " _ & "WHERE (Accom_Code = '11282') AND " _ & "(CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) > CAST('" & Season2 & "' AS DATETIME)) " _ & "LIMIT 1" Set RS = Conn.Execute(SQL) If Not RS.EOF Then IsAvailable = "Y" DisplaySeason = "Summer" Searchform_StartDate = CDate(RS("OB_Depdate")) End If Set RS = Nothing End If If IsAvailable = "N" Then ' Revert to winter DisplaySeason = "Winter" SQL = "SELECT * FROM Libra_Lates.AVLABL " _ & "WHERE (Accom_Code = '11282') AND " _ & "(CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) < CAST('" & Season2 & "' AS DATETIME)) " _ & "LIMIT 1" Set RS = Conn.Execute(SQL) If Not RS.EOF Then IsAvailable = "Y" Else SQL = "SELECT * FROM Libra_Lates.AVLABL " _ & "WHERE (Accom_Code = '11282') AND " _ & "(CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) > CAST('" & Season2 & "' AS DATETIME)) " _ & "LIMIT 1" Set RS = Conn.Execute(SQL) If Not RS.EOF Then IsAvailable = "Y" DisplaySeason = "Summer" Searchform_StartDate = CDate(RS("OB_Depdate")) End If End If Set RS = Nothing End If ' Searcform default values Searchform_SQL = "SELECT StartDate, Deppt, Arppt FROM Searchform_Defaults WHERE (Page LIKE 'Resort') AND (PageName LIKE '" & Searchform_Arppt & "')" If (Request.QueryString("Season") = "Summer") Or (Session("CurrentSeason") = "Summer") Or (DisplaySeason = "Summer") Then Searchform_SQL = Searchform_SQL & " AND (Season = 'SUMMER')" ElseIf (Request.QueryString("Season") = "Winter") Or (Session("CurrentSeason") = "Winter") Or (DisplaySeason = "Winter") Then Searchform_SQL = Searchform_SQL & " AND (Season = 'WINTER')" ElseIf (Request.QueryString("Season") = "Late") Or (Session("CurrentSeason") = "Late") Then Searchform_SQL = Searchform_SQL & " AND (Season = 'LATE')" End If Set RS = Conn.Execute(Searchform_SQL) If RS.EOF Then Set RS = Conn.Execute("SELECT StartDate, Deppt, Arppt FROM Searchform_Defaults WHERE (Page LIKE 'Resort') AND (PageName LIKE '" & Searchform_Arppt & "')") If Not RS.EOF Then If Trim(RS("StartDate") & " ") <> "" Then Searchform_StartDate = Trim(RS("StartDate")) If Not IsDate(Searchform_StartDate) Then Searchform_StartDate = DateAdd("d", Now(), 7) If Trim(RS("Deppt") & " ") <> "" Then Searchform_Deppt = Trim(RS("Deppt")) If Trim(RS("Arppt") & " ") <> "" Then Searchform_Arppt = Trim(RS("Arppt")) End If Set RS = Nothing If DateDiff("d", Now(), Searchform_StartDate) < 0 Then Searchform_StartDate = DateAdd("d", Now(), 7) %> <%=Server.Execute("/forms/header.asp")%>

Destinations > Egypt > Sharm El Sheikh > Baron Palms Hotel 5*

Baron Palms Hotel 5*

Images
Video
Baron Palms Hotel 5*
up down
The Baron Palms is truly an oasis in the middle of the Sinai, a superb 5 Star All Inclusive Boutique-style DELUXE Hotel. The AWARD-WNNING ANDALUCIAN STYLE HOYEL IS SET AMID 150 PLAM TRESS. The luxuriously furnished bedrooms, elegant dining area and rock waterfall in to the main pool are just some of the features waiting for you at this 'A NEW TROPICAL HEAVEN'. <% If IsAvailable = "N" Then %>

Holidays to Baron Palms Hotel 5* are not currently available to book online, to check the latest availability, or for alternative holidays to Sharm El Sheikh, please call <%=PhoneNo%>.

<% Else %> <% If (Request.ServerVariables("QUERY_STRING") <> "") Or (Request.ServerVariables("REQUEST_METHOD") = "POST") Then %> <% RowLimit = 10 SQL = "SELECT MIN(CAST(Adult_Price AS UNSIGNED)) AS Price, Booking_URL AS URL, Accom_Code AS Tour_Code, Hotel_Name, Country AS Holiday_Country, Resort AS Holiday_Resort, Star_Rating, Board, OB_Depdate AS Depart_Date, Duration, OB_Departure_Airport AS Depart_Airport_Code, Prio " _ & "FROM Libra_Lates.AVLABL " _ & "INNER JOIN Libra_Lates.Airport_Prio " _ & "ON Libra_Lates.AVLABL.OB_Departure_Airport = Libra_Lates.Airport_Prio.Airport_Code " _ & "WHERE (Accom_Code = '11282') " _ & " AND (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) > CAST('" & DatePart("yyyy", DateAdd("d", 1, Now())) & "-" & Right("00" & DatePart("m", DateAdd("d", -7, Now())), 2) & "-" & Right("00" & DatePart("d", DateAdd("d", -7, Now())), 2) & "' AS DATETIME)) " If Request.Form("Depart_Date") <> "" Then SQL = SQL & " AND (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) > CAST('" & DatePart("yyyy", DateAdd("d", -7, CDate(Request.Form("Depart_Date")))) & "-" & Right("00" & DatePart("m", DateAdd("d", -7, CDate(Request.Form("Depart_Date")))), 2) & "-" & Right("00" & DatePart("d", DateAdd("d", -7, CDate(Request.Form("Depart_Date")))), 2) & "' AS DATETIME)) " _ & " AND (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) < CAST('" & DatePart("yyyy", DateAdd("d", 7, CDate(Request.Form("Depart_Date")))) & "-" & Right("00" & DatePart("m", DateAdd("d", 7, CDate(Request.Form("Depart_Date")))), 2) & "-" & Right("00" & DatePart("d", DateAdd("d", 7, CDate(Request.Form("Depart_Date")))), 2) & "' AS DATETIME)) " ElseIf (Request.QueryString("Depart_Month") <> "") And (Request.QueryString("Depart_Year") <> "") Then SQL = SQL & " AND (SUBSTRING(OB_Depdate, 7, 4) = '" & SafeSQL(Request.QueryString("Depart_Year")) & "') AND (SUBSTRING(OB_Depdate, 4, 2) = '" & SafeSQL(Right("00" & Request.QueryString("Depart_Month"), 2)) & "') " Else If DisplaySeason = "Summer" Then SQL = SQL & "AND (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) > CAST('" & Season2 & "' AS DATETIME)) " Else ' If (Request.QueryString("Season") = "Winter") Or (Session("CurrentSeason") = "Winter") Then SQL = SQL & "AND (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME) < CAST('" & Season2 & "' AS DATETIME)) " End If End If If Request.Form("Depart_Airport_Code") <> "" Then SQL = SQL & " AND (OB_Departure_Airport = '" & SafeSQL(Request.Form("Depart_Airport_Code")) & "') " ElseIf Request.QueryString("Depart_Airport_Code") <> "" Then SQL = SQL & " AND (OB_Departure_Airport = '" & SafeSQL(Request.QueryString("Depart_Airport_Code")) & "') " RowLimit = 999 End If If Request.Form("Board") <> "" Then SQL = SQL & " AND (Board = '" & SafeSQL(Request.Form("Board")) & "') " If Request.Form("Duration") <> "" Then SQL = SQL & " AND (Duration = '" & SafeSQL(Request.Form("Duration")) & "') " SQL = SQL & "GROUP BY OB_Depdate, Duration, OB_Departure_Airport " _ & "ORDER BY Prio, (CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME)), (CAST(Adult_Price AS UNSIGNED))" Set RS = Conn.Execute(SQL) If RS.EOF Then %> <% Else %> <% i = 0 Do While Not RS.EOF ThisAirport = Trim(RS("Depart_Airport_Code")) ThisMonth = DatePart("m", CDate(RS("Depart_Date"))) ThisURL = Trim(RS("URL")) ThisURL = Replace(ThisURL, "holidays1.asp", "packages1.asp") ThisURL = Replace(ThisURL, "&NoAdults=", "&NumRooms=1&NoAdults_1=") ThisURL = Replace(ThisURL, "&NoChildren=", "&NoChildren_1=") ThisURL = Replace(ThisURL, "&NoInfants=", "&NoInfants_1=") ThisURL = Replace(ThisURL, "&Resort=&", "&Resort=ESH&") ThisURL = Replace(ThisURL, "&", "&") %> <% If StrComp(ThisAirport, LastAirport, vbTextCompare) <> 0 Then %> <% i = 0 %> <% End If %> <% If (StrComp(ThisMonth, LastMonth, vbTextCompare) <> 0) And (Request.QueryString("Depart_Airport_Code") <> "") Then %> <% End If %> <% If i < RowLimit Then %> > <% End If %> <% If i = RowLimit Then %> "> <% End If %> <% LastAirport = ThisAirport LastMonth = ThisMonth i = i + 1 RS.MoveNext Loop End If Set RS = Nothing %>
Choose your holiday to Baron Palms Hotel 5*
Departure date
Departure airport
please call <%=PhoneNo%> for special offers to Baron Palms Hotel 5*
Departures from <% For i = 0 To UBound(Airports) %> <% If Trim(Airports(i) & " ") <> "" Then %> • <%=AirportName(Airports(i))%>   <% End If %> <% Next %>
Departures from <%=AirportName(Trim(RS("Depart_Airport_Code")))%>
 
<%=MonthName(ThisMonth)%>
" class="Text"><%=FormatDate(RS("Depart_Date"), "Y")%> <%=StarRatingImage(RS("Star_Rating"))%> <%=BoardBasis(RS("Board"))%> <%=Trim(RS("Duration"))%> nights " class="Text">fr £ <%=FormatNumber((CDbl(RS("Price")) / 100), 0)%> More
<% Else %>
<% SQL = "SELECT DISTINCT SUBSTRING(OB_Depdate, 4, 2) AS Month, SUBSTRING(OB_Depdate, 7, 4) AS Year " _ & "FROM Libra_Lates.AVLABL " _ & "WHERE (Country NOT LIKE 'holiday country') AND (Accom_Code = '11282') " _ & "GROUP BY SUBSTRING(OB_Depdate, 4, 2), SUBSTRING(OB_Depdate, 7, 4) " _ & "ORDER BY CAST(CONCAT(SUBSTRING(OB_Depdate, 7, 4), SUBSTRING(OB_Depdate, 4, 2)) AS UNSIGNED)" Set RS = Conn.Execute(SQL) If Not RS.EOF Then %>

To find your holiday to Baron Palms Hotel 5*, click on price below or use the search box on the right of the page.

<% Months = RS.GetRows() ReDim Cols(UBound(Months, 2)) SQL = "SELECT MIN(CAST(Adult_Price AS UNSIGNED)) AS Price, Country, Area, Resort, SUBSTRING(OB_Depdate, 4, 2) AS Month, SUBSTRING(OB_Depdate, 7, 4) AS Year, Airport_Prio.Airport_Code " _ & "FROM Libra_Lates.AVLABL " _ & "INNER JOIN Libra_Lates.Board_Prio ON Libra_Lates.AVLABL.Board = Libra_Lates.Board_Prio.Board_Code " _ & "INNER JOIN Libra_Lates.Airport_Prio ON Libra_Lates.AVLABL.OB_Departure_Airport = Libra_Lates.Airport_Prio.Airport_Code " _ & "WHERE (Country NOT LIKE 'holiday country') AND " _ & "(CAST(CONCAT('20', SUBSTRING(OB_Depdate, 7, 2), '-', SUBSTRING(OB_Depdate, 4, 2), '-', SUBSTRING(OB_Depdate, 1, 2)) AS DATETIME)) > (CAST('" & DatePart("yyyy", DateAdd("d", 1, Now())) & "-" & Right("00" & DatePart("m", DateAdd("d", 1, Now())), 2) & "-" & Right("00" & DatePart("d", DateAdd("d", 1, Now())), 2) & "' AS DATETIME)) AND " _ & "(Board_Prio.Prio > 1) AND (Board_Prio.Prio < 7) AND (Accom_Code = '11282') " _ & "GROUP BY Airport_Prio.Airport_Code, SUBSTRING(OB_Depdate, 4, 2) " _ & "ORDER BY Airport_Prio.Prio, CAST(CONCAT('20', SUBSTRING(OB_Depdate, 7, 4), SUBSTRING(OB_Depdate, 4, 2)) AS UNSIGNED), MIN(CAST(Adult_Price AS UNSIGNED))" Set RS = Server.CreateObject("ADODB.Recordset") RS.CursorLocation = 3 ' adUseClient RS.Open SQL, Conn i = 0 k = 0 If RS.EOF Then %> <% Else %> <% For j = 0 To UBound(Months, 2) %> <% Next %> <% Do While Not RS.EOF ThisAirport = Trim(RS("Airport_Code")) If StrComp(ThisAirport, LastAirport, vbTextCompare) <> 0 Then i = 0 k = k + 1 End If RS.MoveNext If Not RS.EOF Then NextAirport = Trim(RS("Airport_Code")) Else NextAirport = "" End If RS.MovePrevious 'CurCol = j 'CurCol = CDbl(RS("Month")) - Month(Now()) : If CurCol < 0 Then CurCol = CurCol + 11 CurCol = 0 For j = 0 To UBound(Months, 2) If (CDbl(Months(0, j)) = CDbl(RS("Month"))) And (CDbl(Months(1, j)) = CDbl(RS("Year"))) Then CurCol = j Exit For End If Next Cols(CurCol) = RS("Month") & ":" & RS("Year") & ":" & Trim(RS("Price")) If StrComp(ThisAirport, NextAirport, vbTextCompare) <> 0 Then %> > <% For j = 0 To UBound(Cols) %> <% If Trim(Cols(j) & " ") <> "" Then TempArr = Split(Cols(j), ":", -1, 1) %> <% Else %> <% End If %> <% Next %> <% ReDim Cols(UBound(Months, 2)) %> <% i = i + 1 %> <% End If %> <% LastAirport = ThisAirport RS.MoveNext Loop End If Set RS = Nothing %>
please call <%=PhoneNo%> for our latest holiday deals.
 <%=MonthName(CDbl(Months(0, j)), True)%>
<%=AirportName(ThisAirport)%> from <%=AirportName(ThisAirport)%>">£<%=FormatNumber((CDbl(TempArr(2)) / 100), 0)%>---
<% End If %> <% End If %> <% End If %>

Location
The Baron Palms are in the heart of the Sinai Peninsula, IN RAS NASRANI BAY. The area is also considered to be one of the best diving spots in the world. With its own 600m private sandy beach (Sea is accessed via A 145-METER OF floating jetty), 15km from Na'ama Bay.

Facilities
24hr Reception 2 Swimming LAGOONS with sweet water (1 heated in winter) WITH Several Jacuzzis & Whirlpool Baths; Sun loungers and parasols; Towels at the pool and beach ; Jogging & cycling track on promenade; Leisure center with 2 floodlit tennis courts; Beach Volleyball Beach Soccer; Beach games; Table Tennis; Billiard Bar ; Darts; State of the Art Gym (Open: 9am-9pm); Daily Beach Aerobics; Health Club & Relaxation Center with Spa; Massage WITH DIFFERENT TREATMENTS; Beauty Treatments; Steam Bath; A BEACH MASSAGE TENT; Money Exchange; Cash Machine; Laundry; Internet café; Shuttle Bus to Na'ama Bay; Shopping arcade NEXT TO THE HOTEL with SEVERAL SHOPS, mini market Hairdresser ; FREE WI-FI IN THE LOBBY AREA; Table tennis Pool table Diving center Water sports; SEVERAL BARS INCLUDING 24 HRS LOBBY BAR & LOUNGE; BEACH BAR, POOL RESTAURANT & BAR OFFER A LA CARTE LUNCH DURING DAY AND A LA CARTE CADEL-LIGHT DINNERS; EGYPTIAN A LA CARTE RESTAURANT; ORIENTAL CAFÉ SERVING SHISHA. 'DINE AROUND' POSSIBLE IN INDIAN 'TAJ MAHAL', ITALIAN 'BELLA VISTA' AND 'AL SAKIA' SEAFOOD A LA CARTE RESTAURANTS, AT SISTER HOTEL.

Children Facilities
Children's Pool(heated in winter) Kid's Club (4-12 yrs) beach and indoor playground; high chairs & free cots; SPECIAL MENUS FOR KIDS; BABY-SITTING SERVICE AVAILABLE UPON REQUEST

Entertainment
Daily live entertainment in different venues Dance bar A Roman amphitheatre Multilingual animation team (daily soft animation evening shows). It has cabaret, musicals, dance competitions, oriental shows, comedy shows, quiz, beach party and international show.

Accommodation
Well-appointed spacious rooms suites with a private balcony or terrace Twin/Triple bedded rooms come with an en suite bathroom, individually controllable Air conditioning and heating, Satellite/ Cable TV, Mini Bar, Safety Deposit Box, Telephone, Hairdryer, Shaver outlet (220 Volts) 100% Egyptian cotton linens and towels 24hrs room service Non-smoking rooms, family rooms with bathtub & shower, rooms with triple beds with separate bathroom & restroom available on request.

Board Basis
Prices are based on 2 adults sharing on All-inclusive basis with Garden View.

Supplements
Pool View, Junior Suite, Single.

Winter Variation
Christmas & New Year's Eve gala dinners are included in the price.

All Inclusive
Breakfast: Complete American Buffet 'Tiran' Main Restaurant 06:30-10:30, Late Breakfast: Continental 'Paradise' Pool Restaurant & BAR 10:30-12:00 Lunch: Complete International Buffet 'Tiran' Main Restaurant 12:30-15:00 Light Meals and Snacks 'Paradise' Pool Restaurant & Bar 12:00-17:00 Afternoon Tea and Coffee with cakes and cookies 'La Veranda' Terrace 16:00-18:00 Varieties of Sandwiches 'Siesta' Beach Restaurant & Bar 12:00-18:30 Dinner: Complete Buffet with daily changing themes 'Tiran' Main Restaurant 18:30-22:00 Dinner: Egyptian A la Carte* (reservation required) 'Egyptian' Restaurant 19:00-23:00 Candlelight Dinner* 8 (reservation required) 'Paradise' pool Restaurant & Bar 19:00-23:00 Midnight Snacks 9 (daily changing snacks) 'Khan El Khalili' Oriental Café 23:30-00:30 All dinner Restaurant reservations to be booked daily at the reception before 12:00hrs* Local Beverages: 'La Veranda' Terrace 10:00-24:00, 'Siesta' Beach Restaurant & bar 10:00-18:30, 'Paradise' Pool Restaurant & Bar 10:00-23:00, 'Now & Zen' Dance Bar 22:00-23:00The following services and facilities are not part of the All Inclusive package and have to be paid for locally: International and Premium Beverages, all beverages after midnight, mini-bar, 24hrs room service, laundry, internet, shops, spa, Massages and Beauty Treatments, Water pipe Shisha, excursions, medical care, water sport centre, diving centre, conference and banqueting facilities, evening floodlit tennis courts. Baron Resort Sharm El Sheikh Added Value 'Dine Around Package' bonus for all guests Of Baron Palms: a discount on food only applies at 'Taj Mahal' Indian, 'Bella Vista' Italian and 'Al Sakia' Seafood Restaurants for Dinner Only and with previous reservation at the Front Office daily by 12noon. Drinks consumed are extra charged. Men are requested to wear long trousers during dinners.to 18:30 ˇ "Now & Zen" Dance Bar 22:00 to 23:00 ˇ "Khan El Khalili" Café 19:00 to 24:00The following services and facilities are not part of the All Inclusive package and have to be paid for locally: International & Premium Beverages, all beverages after midnight, mini-bar, 24 hours room service, laundry, Internet, Shops, SPA Massages and Beauty treatments, Shell-fish and smoked salmon at the "Bella Vista" Restaurant, water pipe Shisha, Excursions, Medical care, Water Sport Center, Diving Center, Conference & Banqueting facilities, Evening Floodlit Tennis Courts: Added value "Dine Around Privilege" Bonus for all guests: a Discount on Food only applies at Indian and Sea Food Restaurants for Dinner only and with previous reservation at the Front office daily by 12 noon. Drinks consumed are extra charged.

No of Rooms
230

No of Floors
3

No of Lifts
0

Official Rating
5*

Our Rating
LLLLL

Hotels in Sharm El Sheikh
The Savoy Hotel 5*, Sofitel Sharm Hotel 5*, Sierra Hotel 5*, Ritz Carlton Hotel 5*, Renaissance Golden View Beach Hotel 5*, Novotel Palms Hotel 5*, Novotel Beach Sharm Hotel 5*, Maritim Jolieville Golf & Resort 5*, Maritim Jolie Ville Royal Peninsula 5*, Jaz Mirabel Club Hotel 5*, Jaz Belvedere Hotel 5*, Hyatt Regency Sharm Hotel 5*, Hilton Sharm Waterfalls Resort Hotel 5*, Hilton Sharm Dreams Resort Hotel 5*, Hauza Beach Hotel 5*, Baron Resort Hotel 5* Deluxe, Baron Palms Hotel 5*, Sol Y Mar Sharming Inn Hotel 4*, Laguna Vista Garden Resort Hotel 4*, Iberotel Club Fanara Hotel 4*, Hilton Sharm Fayrouz Resort Hotel 4*, Hilton Sharks Bay Resort Hotel 4*, El Hayat Sharm El Sheikh Resort 4*, Eden Rock Hotel 4*, Amarante Garden Palms Hotel 4*, Sol Y Mar Shams Suites 3*,

Search & Book

<%=Server.Execute("/forms/footer.asp")%> <% If IsObject(RS) Then Set RS = Nothing Conn.Close Set Conn = Nothing %>