3-4 persons rented flat, **** Savines-le-lac – « La Tulipe » chez HUIZER Alie, *** Embrun – COLLOMB Alain, *** Puy-Sanières – KEMPF-TRIEPEL Gérard, *** Embrun – COLLOT Jean-Michel, *** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Mont Guillaume »

function link_module_css(path) {
if(document.createStyleSheet){
document.createStyleSheet(path);
}else{
$j(‘head’).append( »);
}
}
function addLoadListener(func){if(window.addEventListener){window.addEventListener(« load »,func,false);}else if(document.addEventListener){document.addEventListener(« load »,func,false);}else if(window.attachEvent){window.attachEvent(« onload »,func);}}
function ChangeUrl(formulaire)
{if(formulaire.ListeUrl.selectedIndex!=0)
{location.href=formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value;}
else
{alert(‘Veuillez choisir une rubrique.’);}}
function fck_formulaire_dynamique_check()// utilisé pour formulaires fck
{var formu=document.getElementById(‘fck_formulaire_dynamique’);var error=false;for(i=0;i<formu.length;i++)
{if(formu[i].getAttribute('required')=='required')
{try
{formu[i].onfocus=function(){this.style.backgroundColor="#fff";};}catch(e)
{formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');}
if(formu[i].type=='text'||formu[i].type=='textarea')
{if(formu[i].value.length<=0)
{formu[i].style.backgroundColor='#FFCFCF';error=true;}}else if(formu[i].type=='checkbox'||formu[i].type=='radio')
{if(!formu[i].checked)
{formu[i].style.backgroundColor='#FFCFCF';error=true;}}}}
if(error)
{alert('Please fill all required fields');return false;}else
{return true;}}
function formulaire_dynamique_check_captcha(formu)// utilisé par les enquetes publiques avec captcha = 1
{
var error=false,
captchaField = document.getElementById('g-recaptcha-wrapper');

// on vérifie d'abord le captcha
new Ajax.Request(
"ajax.php",
{
method: 'post',
parameters: {page:'verifCaptcha',captcha: document.getElementById('g-recaptcha-response').value},
onSuccess: function(result){
if(result.responseText=='nok')
{
error = true;
captchaField.style.border='3px solid red';
}
var checkboxes = new Array();
// Champs obligatoires
for(i=0;i<formu.length;i++)
{
if(formu[i].getAttribute('required')=='required')
{
try
{
formu[i].onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');
}
if(formu[i].type=='text'||formu[i].type=='textarea'||formu[i].type=='file')
{
if(formu[i].value.length=2)
{
error = true;
}
}
if(error)
{
alert(‘Please fill all required fields’);
return false;
} else
{
document.getElementsByClassName(‘enquete-envoyer’)[0].update(‘

Your request is being processed. Please wait while the form is sent.

‘);
formu.submit();
}
}
}
);
return false;
}
function formulaire_dynamique_check(formu)// utilisé par les enquetes publiques avec captcha = 0
{
var error=false;
// Champs obligatoires
var checkboxes = new Array();
for(i=0;i<formu.length;i++)
{
if(formu[i].getAttribute('required')=='required')
{
try
{
formu[i].onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');
}

if(formu[i].type=='text'||formu[i].type=='textarea'||formu[i].type=='file')
{
if(formu[i].value.length=2)
{
error = true;
}

if(error)
{alert(‘Please fill all required fields’);return false;}else
{
document.getElementsByClassName(‘enquete-envoyer’)[0].update(‘

Your request is being processed. Please wait while the form is sent.

‘);
formu.submit();
}
}
function check_options_required()
{
return check_element_options_required(false);
}
function check_element_options_required($element)
{
var valid = true;
if($element!==false)
{
var $searchIn = $element.find(‘input.required, textarea.required’);
} else
{
var $searchIn = $j(‘input.required, textarea.required’);
}
$searchIn.each(function()
{
if(this.type==’checkbox’ && !this.checked)
{
valid = false;
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}
if(this.value.length <= 0)
{
valid = false;
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}

var val = $j(this).val();
var temp = val.split('.');
var ext = '.'+temp[temp.length-1];
if(this.type=='file' && !in_array(ext,['.bmp','.BMP','.jpg','.JPG','.jpeg','.JPEG','.png','.PNG','.gif','.GIF','.zip','.ZIP','.pdf','.PDF','.doc','.DOC','.xls','.XLS']))
{
valid = false;
alert(" This file is not allowed ");
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}
}
);
return valid;
}
function add_to_cart(pid)
{
// Si des requêtes sont tjs en cours d'exécution suite à un changement de quantité on temporise avant de lancer la mise à jour du panier sinon ça peut le corrompre
if(!$j('#mb_panier').data('priceLock') && !$j('#mb_panier').data('stockLock'))
{
if($j.browser.msie) // sous ie la fenêtre ne se positionne pas toute seule
{
var options = {overlayClose:true, autoPosition: true,onShow: function (d) {
d.container.css({position:'absolute',textAlign:'center'});
this.setPosition();
}};
} else
{
var options = {overlayClose:true};
}

$j('#mb_panier').html('

loading

‘);

if(!pid)
{
// Ajout au panier de l’article de la fiche
var valid = check_options_required();
if(valid)
{
$j(‘#mb_panier’).modal(options);
$j.post(« ajax.php?page=fiche_article »,{action:’ajout_panier’,data:$j(‘#cart_quantity’).serialize()},function(data)
{
add_to_cart_complete(data);
});
}
} else
{
// Ajout au panier d’un article complémentaire (depuis les modules aussi achetés…)
$j(‘#mb_panier’).modal(options);
$j.post(« ajax.php?page=fiche_article »,{action:’ajout_panier’,pid:pid},function(data)
{
add_to_cart_complete(data);
});
}
} else
{
setTimeout(« add_to_cart(« +pid+ ») »,500);
}
}

function add_to_cart_complete(html)
{
// Mise à jour des boxes panier en parallèle
var requests = 0;
var urls = [
{elt: »#nb_articles_panier, .nb_articles_panier »,url: »ajax.php?page=fiche_article&action=maj_nb_articles_panier »},
{elt: »#total_panier »,url: »ajax.php?page=fiche_article&action=maj_total_panier »},
{elt: »#panier-complet »,url: »ajax.php?page=fiche_article&action=maj_panier-complet »},
{elt: »#cart-tooltip-container »,url: »ajax.php?page=fiche_article&action=maj_panier-bulle-v14″}
];

$j.each(urls, function()
{
var elt = this.elt;
$j.get(this.url).success(function(data)
{
$j(elt).html(data);
}).complete(function()
{
++requests;
if (requests == 3)
{
$j(‘#mb_panier’).html(html); // Remplacement du loader
}
});
});
}

#simplemodal-overlay {background-color:#000;}
link_module_css(‘template/modules/PANIER/fenetre-ajout/fenetre-ajout.css’);


<!–

function ejs_nodroit(){
alert(‘Clic droit désactivé’);
return(false);
}
document.oncontextmenu = ejs_nodroit;

–>

link_module_css(‘template/modules/diaporama-v13/diaporama-v13.css’);

office de tourisme d'embrun, location meublés, hébergement, animations, découvrir l'embrunais

Français English Italian Dutch

<!– Ancienne présentation du Header

MODULE:CENTRE_DIAPORAMA
BOXE_LIBRE:header logo
MODULE:DRAPEAUX
BOXE_LIBRE:header slogan
MODULE:SCRIPTPROJET3

–>


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Quick search

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Guide « Sortir »

launchMini(« 875/4049/17723 », « true », « 0x002e6e », « 204 », « 108 », « fr »);

contact, adresse office de tourisme d'Embrun

<!–Suivez-nous sur
–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Météo

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Newsletter

function verify(form)
{
var passed = false;
var blnRetval, intAtSign, intDot, intComma, intSpace, intLastDot, intDomain, intStrLen;
if (form.sendto){
intAtSign=form.sendto.value.indexOf(« @ »);
intDot=form.sendto.value.indexOf(« . »,intAtSign);
intComma=form.sendto.value.indexOf(« , »);
intSpace=form.sendto.value.indexOf( » « );
intLastDot=form.sendto.value.lastIndexOf(« . »);
intDomain=intDot-intAtSign;
intStrLen=form.sendto.value.length;
// *** CHECK FOR BLANK sendto VALUE
if (form.sendto.value == «  » )
{
alert(« You have not entered an email address. »);
form.sendto.focus();
passed = false;
}
// **** CHECK FOR THE @ SIGN?
else if (intAtSign == -1)
{

alert(« Your email address is missing the @. »);
form.sendto.focus();
passed = false;

}
// **** Check for commas ****

else if (intComma != -1)
{
alert(« Email address cannot contain a comma. »);
form.sendto.focus();
passed = false;
}

// **** Check for a space ****

else if (intSpace != -1)
{
alert(« Email address cannot contain spaces. »);
form.sendto.focus();
passed = false;
}

// **** Check for char between the @ and dot, chars between dots, and at least 1 char after the last dot ****

else if ((intDot <= 2) || (intDomain <= 1) || (intStrLen-(intLastDot+1)


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Multicriteria search

function loadCriteria()
{
$j(‘#criteria_div’).load(« ajax.php?page=recherche-multicriteres&f_criteria= »+$j(‘#f_criteria’).serialize());
}
function loadAllCriteria()
{
$j(‘#criteria_div’).load(« ajax.php?page=recherche-multicriteres&f_criteria= » »);
}

Votre Hébergement

—–

Nombre de personnes

—–

Confort

—–
1 star
2 stars
3 stars
4 stars
5 stars

Localité

—–
Baratier
Chateauroux les Alpes
Crévoux
Crots
Embrun
Le Sauzedu-Lac
Les Orres
Pontis
Prunières
Puy Saint Eusèbe
Puy Sanières
Réallon
Savines le Lac
St André d’Embrun
St Sauveur

—–

—–

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Se déplacer

se deplacer au départ d'embrun

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

News
link_module_css(‘template/modules/defilante-news/defilante-news.css’);

Festival d’accordéonSamedi 5 avril21h30

VISITE GUIDEE:La cathédrale et son trésorVacances de PâquesLes mercredis 16 et 23 avril à 10hLe Vendredi 9 mai à 10h

Visite Virtuelle de la cathédrale

Expositions

See all the news

var boxeDefilanteNews = new BoxeDefilante(‘defilante-news-bulle’);

–>

»

»

» 3-4 persons rented flat


pixel_trans
pixel_trans
Page(s) :  1           
**** Savines-le-lac - "La Tulipe" chez HUIZER Alie
**** Savines-le-lac – « La Tulipe » chez HUIZER Alie
5 persons – 2 bedrooms – communal garden
This quiet apartmentis very comfortable and very well equipped with a direct view of the Serre-Ponçon. Near the center of Savine-le-lac (5 min walk).
Rentals all year. Weekly rates from € 450 to € 895.


Tél.: + 33 (0)4 92 48 55 49 – [email protected]

icone-details

**** Savines-le-lac - "La Tulipe" chez HUIZER Alie
*** Embrun - COLLOMB Alain
*** Embrun – COLLOMB Alain
4 persons – 1 bedroom – terrace – garden
Ground floor level flat in the owners house. Rental during the entire year. For prices contact the owner.


Tél.: + 33 (0)6 45 22 04 04 – [email protected]

icone-details

*** Embrun - COLLOMB Alain
*** Puy-Sanières - KEMPF-TRIEPEL Gérard
*** Puy-Sanières – KEMPF-TRIEPEL Gérard
6 to persons – 3 bedrooms – balcony – garden
IN a quiet hamlet, bright and large independent flat (2 floors) with groundfloor acces in a moutain villa. Panoramical view on Serre-Ponçon lake and the surrounding mountains. 10 min far from Savines-le-Lac and Embrun. Rental from June to September.
600 € to 670 € per week.


Tél.: +33 (0)6 06 55 48 73 – [email protected]

icone-details

*** Puy-Sanières - KEMPF-TRIEPEL Gérard
*** Embrun - COLLOT Jean-Michel
*** Embrun – COLLOT Jean-Michel
4 persons – 1 bedroom – terrace – garden – nearby water-body
Plan d’Eau – Independant, semi-detached, comfortable house, with 2 small enclosed gardens and terrace.
Rental during the enitre year. 320 € to 502 € the week.


Tél.: + 33 (0)6 35 93 64 68 – [email protected]

icone-details

*** Embrun - COLLOT Jean-Michel
*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Mont Guillaume"
*** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Mont Guillaume »
2 to 5 persons – 1 bedroom – terrace – garden
La Gardiole – flat located at the garden level in an independent house.
Rental during the entire year, short stays accepted. 340 € to 580 € the week (prices during week of triathlon, consult the owner).


Tél.: +33 (0)6 08 78 16 34 – [email protected]

icone-details

*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Mont Guillaume"
*** Baratier - ANDRE Nadine et Patrice
*** Baratier – ANDRE Nadine et Patrice
4 to 5 persons – 2 bedrooms – garden – balcony
Gîte « la Maison Verte » – FLat at ground level of a house with fruit garden. 2 flats with a capacity of 14 persons.
399 € to 695 € the week. Rental during the entire year.


Tél.: + 33 (0)6 15 67 02 69 – [email protected]

icone-details

*** Baratier - ANDRE Nadine et Patrice
*** Savines le Lac - BELLET Alain 2 ch
*** Savines le Lac – BELLET Alain 2 ch

2-8 persons – 1-2 rooms – Terrace – Garden
recent Villa new and comfortable apartments on one level. Rentals throughout the year, month, week, short stays, weekends and nights.
Weekly rates from 289 €


Tél.: +33 (0)6 87 87 44 15 – [email protected]

icone-details

*** Savines le Lac - BELLET Alain 2 ch
*** Embrun - LAMBERTY Pierre
*** Embrun – LAMBERTY Pierre
1 to 3 persons – 1 bedroom – garden – terrace
Les Girauds à Chalvet – Garden level flat in the owners villa. Rental from June to September. 330 € to 420 € the week.


Tél.: + 33 (0)6 79 14 35 94 – [email protected]

icone-details

*** Embrun - LAMBERTY Pierre
*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Pic du Morgon"
*** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Pic du Morgon »
2 to 6 persons – 2 bedrooms – terrace – garden
La Gardiole – ‘Le Mont Guillaume’ flat, (located at the garden level, with terrace and garden) in an independent house.
Rental during the entire year, short sojourns accepted. 400 € to 650 € the week. For week of the triathlon: contact the owner.


Tél.: +33 (0)6 08 78 16 34 – [email protected]

icone-details

*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Pic du Morgon"
*** Embrun - ELZEARD André et Michèle
*** Embrun – ELZEARD André et Michèle
3 people – 1 bedroom – patio – garden
Route de la Madeleine. – Apartment entirely renovated and equipped, on the ground floor (a few steps) to the house owner, garden, barbecue, games for children
Rental all year, week short stays. Weekly rates from 240 € to 340 €


Tél.: + 33 (0)6 81 97 85 02 – +33 (0)4 92 43 17 66

icone-details

*** Embrun - ELZEARD André et Michèle
*** Châteauroux-les-Alpes - Camping-Hôtel de plein-air Les Cariamas
*** Châteauroux-les-Alpes – Camping-Hôtel de plein-air Les Cariamas
2-8 persons – 1 to 3 bedrooms – swimming-pool – terrace – communal garden
Great comfort chalet, motor home, mobile-home rental.
350 € to 820 € according to the period or the location. Rental during the all seasons.


Tél.: +33 (0)4 92 43 22 63 – [email protected]

icone-details

*** Châteauroux-les-Alpes - Camping-Hôtel de plein-air Les Cariamas
*** Savines le Lac - BELLET Alain 3 ch
*** Savines le Lac – BELLET Alain 3 ch
8 persons – 1 at 3 bedrooms – garden – terrace
New villa and floor level comfortable flats. Rental during the entire year, for month, week, short sojourns, week-ends and overnight stays.
From 279 € the week.


Tél.: +33 (0)6 87 87 44 15 – [email protected]

icone-details

*** Savines le Lac - BELLET Alain 3 ch
*** Embrun - HERLEAUX Alain
*** Embrun – HERLEAUX Alain
4 persons – 1 bedroom – balcony
Résidence Tourmaline – Flat located on the 3rd floor of a peaceful building (with lift), two steps away from historical center. Vue on the mountains and the Durance.
Rental during the entire year. For prices contact the owner.


Tél.: +33 (0)6 80 22 11 90 – [email protected]

icone-details

*** Embrun - HERLEAUX Alain
*** Embrun - BOURGUIGNON - DELANGUE Anne
*** Embrun – BOURGUIGNON – DELANGUE Anne

4 to 6 people – 2 bedrooms – balconies – city center
Very large apartment T3, bright and comfortable in a quiet residential estate, on the 4th floor. Facing South-West with 2 large balconies, offering a view of the mountains from all sides. Close to the historic center, the shops, the SNCF railway station and shuttle buses (in summer for the water and in the winter for ski resorts).
Rental all year for weekly . Price of 400 € to 700 € contact us


Tél: +32 84 31 61 39 – [email protected]

icone-details

*** Embrun - BOURGUIGNON - DELANGUE Anne
** Embrun - CANOVAS Monique et Lucien
** Embrun – CANOVAS Monique et Lucien
2 to 4 persons – 1 bedroom – balcony – Plan d’eau
Le Plein Ciel – Bright, comfortable flat, located just near the water stretch. Beautiful vue on the lake and the mountains from the large terrace.
Rental during the entire year.
For prices contact the owner.


Tél.: + 33 (0)6 79 81 12 56 – [email protected]

icone-details

** Embrun - CANOVAS Monique et Lucien
*** Embrun - CROUSIER Michel
*** Embrun – CROUSIER Michel
2 to 4 persons – 1 bedroom – terrace – garden
Le Béal de Marigni – New, comfortable flat, with private entrance, at garden level of a house. Located just near the historical center.
Rental from June to October. 286 € to 406 € the week.


Tél.: + 33 (0)6 79 55 35 74 – [email protected]

icone-details

*** Embrun - CROUSIER Michel
** Embrun - BECKER Roger
** Embrun – BECKER Roger
3 to 6 persons – 2 bedrooms – balcony – nearby water-body
Le Grand Pavois – Flat on the 1st floor, with lift, in a calm residence.
Rental during the entire year. For week price contact the owner.


Tél.: + 00 33 (0)6 13 60 44 98 – [email protected]

icone-details

** Embrun - BECKER Roger
*** Embrun - MASSOT Emmanuel et Anne
*** Embrun – MASSOT Emmanuel et Anne
2 to 4 persons – 1 bedroom – city-center
Beautiful and authentic flat at the groundfloor of a town house in the middle of historical center of Embrun. Cool in summer and cozy in winter, fully equiped and comfortable; two steps away from free bus links to the lake in summer and from bus links to ski resorts in winter.
Rental during the entire year. Price per week: 300 € to 400 €.

Complet du 2 juillet au 20 août 2016.


Tél.: +33 (0)6 44 77 17 58 – [email protected]

icone-details

*** Embrun - MASSOT Emmanuel et Anne
** Embrun - CANET Martine
** Embrun – CANET Martine
4 to 6 persons – 2 bedrooms – garden – terrace
Rue Henri Dunant – 90m² bright and comfortable flat, at the garden level of a independent building, located just near the historical center.
Rental from the end of June to the begining of September.
550 € to 590 € the week (5% on consécutive weeks).


Tél.: + 33 (0)6 89 08 67 97 – [email protected]

icone-details

** Embrun - CANET Martine
** Chateauroux les Alpes - BARRAL Louis et Eliane
** Chateauroux les Alpes – BARRAL Louis et Eliane
4 to 6 persons – 3 bedrooms – garden – terrace
Hameau La Queste – « L’Orel » flat, located on the 1st floor of an independent house, holding 4 B&B in the middle of nature.
Rental during the entire year. 380 € to 460 € the week (resort fee and charges included).


Tél.: +33 (0)6 60 86 17 15 – www.location-laqueste.com

icone-details

** Chateauroux les Alpes - BARRAL Louis et Eliane
Page(s) :  1           


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

visites patrimoine avec une guide conférencière

Groupes et Scolaires

 

Pays sud

Pays Serre-Ponçon-Ubaye-Durance
« Montagne de Lumières »

Tourisme et handicap

Label Tourisme & Handicap


<!–

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Quick search

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Guide « Sortir »

launchMini(« 875/4049/17723 », « true », « 0x002e6e », « 204 », « 108 », « fr »);

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Opening times

September to October & April to June

Monday to Saturday

9.00 to 12.00 and 14.00 to 18.00

Closed on thursdays PM
outside French holidays’ periods.

 

November to March

Monday to Saturday
9.00 to 12.00 and 14.00 to 18.00

Closed on thursdays
outside French holidays’ periods.

 

July and August (summer)

Monday to Saturday
9.00 – 19.00
Sundays
10h – 12h30 & 16h – 19h




<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Most popular

link_module_css(‘template/modules/defilante-selection/defilante-selection.css’);

<a href="http://www.tourisme-embrun.com/en/groups-scholar-tours-2015-xml-254_365-833.html" data-description="

Groups & Scholar tours 2015 Groups & Scholar tours 2015
Guided tours all year round. Minimum 20 persons. English, German, Italian and Spanish.

Tél : +33 (0)4 92 43 72 71
E-mail : [email protected]

« >Groups & Scholar tours 2015
Groups & Scholar tours 2015

<a href="http://www.tourisme-embrun.com/en/the-label-pays-et-ville-dart-et-dhistoire-xml-254_365-3266.html" data-description="

The label Pays et Ville d’Art et d’Histoire
In June 2011, the Pays Serre-Ponçon Ubaye Durance received the label Pays d’Art et d’Histoire given by the Culture and Communication Ministry.

« >The label Pays et Ville d\'Art et d\'Histoire
The label Pays et Ville d’Art et d’Histoire

<a href="http://www.tourisme-embrun.com/en/kit-for-blind-and-partially-sighted-persons-xml-254_365-943.html" data-description="

KIT for blind and partially sighted persons KIT for blind and partially sighted persons
This KIT is composed of a text in big print, a Braille and an audio version.

« >KIT for blind and partially sighted persons
KIT for blind and partially sighted persons

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–



Office de Tourisme – Place du Général DOSSE – 05200 EMBRUN | Tél. +33 (0)4 92 43 72 72 | | Terms and conditions | Sitemap | | |© Copyright Photo Oliver 0965190598

Ce site est réalisé par CAP communication




<!–

gi_Cappture_Domain_Id = ‘ezBDOUE4NzU3LUI1QTctNDZCRi04OEFFLTcwNzAyOEUwMjlERH1fe0M5RTdFOTZELTc3MDItNDJBQy1CMkI3LTEzOTcyRThCRjdDOX0=’

–>
var gaJsHost = ((« https: » == document.location.protocol) ? « https://web.archive.org/web/20160331001056/https://ssl. » : « https://web.archive.org/web/20160331001056/http://www. »);
document.write(unescape(« %3Cscript src=' » + gaJsHost + « google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E »));

try {
var pageTracker = _gat._getTracker(« UA-5635448-13 »);
pageTracker._trackPageview();
} catch(err) {}

Retour en haut