** Embrun – REGUE Roland : Tourisme office

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 = "";
for(i=0;i<formu.length;i++)
{
if(formu[i].type=='text' && formu[i].name=='captcha')
{
captchaField = formu[i];
}
}
// on vérifie d'abord le captcha
new Ajax.Request(
"ajax.php",
{
method: 'get',
parameters: {page:'verifCaptcha',captcha:captchaField.value},
onSuccess: function(result){
if(result.responseText=='nok')
{
error = true;
var nb = Math.round(Math.random(0)*1000)+1;
$$('img.cryptogram').each(function(elt)
{
elt.src = './cryptographp.php?cfg=0&session=9208f2bc308d764e6cd0dd94c52a21c0&'+nb;
});

try
{
captchaField.onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
captchaField.setAttribute('onfocus','style.backgroundColor="#fff"');
}
captchaField.style.backgroundColor='#FFCFCF';
}
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('

‘);

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
}
});
});
}

//Smooth Scroll marquee
jQuery(document).ready(function($)
{
if ($(‘marquee.defilante-smooth’).length > 0)
{
$(‘marquee.defilante-smooth’).load()
{
$(‘marquee.defilante-smooth’).marquee().mouseover(function ()
{
$(this).trigger(‘stop’);
})
.mouseout(function ()
{
$(this).trigger(‘start’);
})
.mousemove(function (event)
{
if ($(this).data(‘drag’) == true)
{
this.scrollLeft = $(this)
.data(‘scrollX’) + ($(this)
.data(‘x’) – event.clientX);
}
})
.mousedown(function (event)
{
$(this).data(‘drag’, true).data(‘x’, event.clientX).data(‘scrollX’, this.scrollLeft);
})
.mouseup(function ()
{
$(this).data(‘drag’, false);
});
}
}
});

#simplemodal-overlay {background-color:#000;}

<!–

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

–>

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

Spectacles

Les Cordeliers

Visite théâtralisée

Vitraux de la Cathédrale

L'orgue de la Cathédrale

Embrun illuminé sur le Roc

Détail du Trésor

Détail du Trésor

Arcatures lombardes du clocher de la Cathédrale

La Maison des Chanonges

Détail d'architecture

La Tour Brune, ancien donjon des archevêques

Anges

Les Capucins, centre d'art contemporain

Concerts à Embrun

featuredcontentslider.init({
id: « diaporama », //id of main slider DIV
contentsource: [« inline », «  »], //Valid values: [« inline », «  »] or [« ajax », « path_to_file »]
toc: « markup », //Valid values: « #increment », « markup », [« label1 », « label2 », etc]
nextprev: [«  », «  »], //labels for « prev » and « next » links. Set to «  » to hide.
revealtype: « click », //Behavior of pagination links to reveal the slides: « click » or « mouseover »
enablefade: [true, 0.1], //[true/false, fadedegree]
autorotate: [true, 5000], //[true/false, pausetime]
onChange: function(previndex, curindex){ //event handler fired whenever script changes slide
//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
}
})

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

L’Eau

 

     La Montagne

 

        Le Patrimoine

 

 

 

Français English Italian Dutch
jQuery(document).ready(function($) {
$(‘img.changeLanguage_trigger’).on(‘click’,function()
{
var $this = $(this);
$.get(‘ajax.php’,{
page:’language’,
language:$this.data(‘id’),
url:$this.data(‘url’),
params:$this.data(‘params’)
}, function(data)
{
window.location.replace(data);
});
});
});

Centrale de réservation en ligne office de tourisme embrun

sfHover = function() {
var sfEls = document.getElementById(« nav »).getElementsByTagName(« LI »);
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function textCounter(field,counter,maxlimit,linecounter){var fieldWidth=parseInt(field.offsetWidth);var charcnt=field.value.length;if(charcnt>maxlimit){field.value=field.value.substring(0,maxlimit);}else{var percentage=parseInt(100-((maxlimit-charcnt)*100)/maxlimit);document.getElementById(counter).style.width=parseInt((fieldWidth*percentage)/100)+ »px »;document.getElementById(counter).innerHTML= »Limit: « +percentage+ »% »
setcolor(document.getElementById(counter),percentage, »background-color »);}}
function setcolor(obj,percentage,prop){obj.style[prop]= »rgb(80%, »+(100-percentage)+ »%, »+(100-percentage)+ »%) »;}
function change_image(id_select){ // pour le vieux module options
try { MagicZoom_stopZooms();} catch(err) {}
var id=$(‘id[‘+id_select+’]’).options[$(‘id[‘+id_select+’]’).selectedIndex].value;
var src=$(« p| »+id).name;
var src_img=$F(« p| »+id);
if(src!=’noimg’){
$(‘div_photo’).update(« 


See larger image

« );
jQuery(‘a[rel= »lightbox[products] »]’).attr(‘rel’,’lightboxproducts’).fancybox({
‘titlePosition’ : ‘over’,
‘padding’ : 0,
‘transitionIn’ : ‘none’,
‘transitionOut’ : ‘none’,
‘type’ : ‘image’,
‘changeFade’ : 0
});
}
try { MagicZoom_findZooms();} catch(err) {}
}
var globaleval=function(script){if(window.execScript){return window.execScript(script);}else if(navigator.userAgent.indexOf(‘KHTML’)!=-1){var s=document.createElement(‘script’);s.type=’text/javascript’;s.innerHTML=script;document.getElementsByTagName(‘head’)[0].appendChild(s);}else{return window.eval(script);}}
function changeData(page,id,cPath)
{product_id=id;if(page==’02’)
{var url= »fiche_article_02_ajax.php?cPath= »+cPath+ »&products_id= »+id;}
MagicZoom_stopZooms();new Ajax.Updater(‘div_data’,url,{method:’get’,parameters:{products_id:id},evalScripts:true,asynchronous:false,onLoading:function(){$(‘div_data_loader’).innerHTML=’

‘;},onComplete:function(transport){$(‘div_data_loader’).innerHTML= »;MagicZoom_findZooms();}});}
function placeBid()
{
if($j(‘#bid_agree’).prop(« checked »))
{
$j.post(‘ajax.php’,{page:’fa’, action:’placeBid’,products_id:$j(‘#products_id’).val(),bid_price:$j(‘#bid_price’).val(),auction_id:$j(‘#auction_id’).val()},function(elt)
{
if(elt== »ok »)
{
window.location.reload();
} else
{
alert(elt);
}
});
} else
{alert(unescape(‘Please read our conditions of use and agree to them. If you do not do so, your bid will not be processed.’));}
}
function check_agree(TheForm){if(TheForm.agree.checked){return true;}else{alert(unescape(‘Please read our conditions of use and agree to them. If you do not do so, your bid will not be processed.’));return false;}}
var win=null;function NewWindow(mypage,myname,w,h,scroll){LeftPosition=(screen.width)?(screen.width-w)/2:0;TopPosition=(screen.height)?(screen.height-h)/2:0;settings=’height=’+h+’,width=’+w+’,top=’+TopPosition+’,left=’+LeftPosition+’,scrollbars=’+scroll+’,resizable’;win=window.open(mypage,myname,settings);}


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

Quick search

jQuery(document).ready(function ($) {
$(‘#ac_keywords’).on(‘focus’, function () {
if (this.value == ‘Search :’) {
this.value =  »;
}
});
});

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

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éon
Samedi 5 avril
21h30

VISITE GUIDEE:
La cathédrale et son trésor
Vacances de Pâques
Les mercredis 16 et 23 avril à 10h
Le Vendredi 9 mai à 10h

Visite Virtuelle de la cathédrale

Expositions

See all the news

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

–>

All products in the same category

Furnished flat for holidays in Embrun 2014
Furnished flat for holidays in Embrun 2014


*** Embrun - COLLOMB Alain
*** Embrun – COLLOMB Alain


*** Embrun - COLLOT Jean-Michel
*** Embrun – COLLOT Jean-Michel

*** Embrun - MASSOT Emmanuel et Anne
*** Embrun – MASSOT Emmanuel et Anne
*** Embrun - CROUSIER Michel
*** Embrun – CROUSIER Michel
*** Embrun - FAURE René
*** Embrun – FAURE René
*** Embrun - Sci K et K - M. DEUVLETIAN
*** Embrun – Sci K et K – M. DEUVLETIAN
*** Embrun - ELZEARD André et Michèle
*** Embrun – ELZEARD André et Michèle
*** Embrun - FAURE René
*** Embrun – FAURE René
*** Embrun - LAMBERTY Pierre
*** 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 »
*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Mont Guillaume"
*** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Mont Guillaume »
*** Châteauroux-les-Alpes - Camping-Hôtel de plein-air Les Cariamas
*** Châteauroux-les-Alpes – Camping-Hôtel de plein-air Les Cariamas
*** Savines le Lac - BELLET Alain
*** Savines le Lac – BELLET Alain
** Embrun - BAUDVIN-BERRIOT Valérie
** Embrun – BAUDVIN-BERRIOT Valérie
** Embrun - BECKER Roger
** Embrun – BECKER Roger
** Embrun - DOURNON-VOILLAUME Isabelle
** Embrun – DOURNON-VOILLAUME Isabelle
** Embrun - KERN Patrick
** Embrun – KERN Patrick
** Embrun - KELLER Bernard
** Embrun – KELLER Bernard
** Embrun - REGUE Roland
** Embrun – REGUE Roland
** Embrun - RITTON Daniel
** Embrun – RITTON Daniel
** Saint-André d'Embrun - ROCHE Roland
** Saint-André d’Embrun – ROCHE Roland
** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Col du Parpaillon"
** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Col du Parpaillon »
** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Massif des Ecrins"
** Saint-André d’Embrun – TUFFERY Alain et Christine « Le Massif des Ecrins »
* Embrun - LAGIER Jean et Simone
* Embrun – LAGIER Jean et Simone
Embrun - AVON Albert
Embrun – AVON Albert
Embrun - AVON Yvette
Embrun – AVON Yvette
Embrun - BERLA Marie
Embrun – BERLA Marie
Embrun - BORGIA Henri
Embrun – BORGIA Henri
Baratier - BRES Gilbert "Le Verger"
Baratier – BRES Gilbert « Le Verger »
Baratier - BELLOT Françoise
Baratier – BELLOT Françoise
Embrun - CANZIANI Daniel
Embrun – CANZIANI Daniel
Embrun - COUROUSSE Joseph
Embrun – COUROUSSE Joseph
Chateauroux les Alpes - "Les Ancolies" chez DELCLAUX Simone
Chateauroux les Alpes – « Les Ancolies » chez DELCLAUX Simone
Embrun - EMAIN Brigitte
Embrun – EMAIN Brigitte
Saint André d'Embrun - GIRARDI Jean-Louis
Saint André d’Embrun – GIRARDI Jean-Louis
Embrun - FAURE René
Embrun – FAURE René
Embrun - GARCIN Roger
Embrun – GARCIN Roger
Chateauroux les Alpes - GIRARD Régis
Chateauroux les Alpes – GIRARD Régis
Embrun - GOLD Jean-Paul
Embrun – GOLD Jean-Paul
Embrun - GONÇALVES Francisco
Embrun – GONÇALVES Francisco
Embrun - HENNEBICQ Micheline
Embrun – HENNEBICQ Micheline
Saint Sauveur - ROUX Roger
Saint Sauveur – ROUX Roger
Embrun - MICHELIS Patrick et Zita
Embrun – MICHELIS Patrick et Zita
Embrun - NORDET Louise
Embrun – NORDET Louise
Embrun - ORGEAS Joseph et Yvette
Embrun – ORGEAS Joseph et Yvette
Embrun - PERRIN Jean-Luc
Embrun – PERRIN Jean-Luc
Embrun - QUILLEVERE Claude et Gérard
Embrun – QUILLEVERE Claude et Gérard
Embrun - REGUERA Catherine
Embrun – REGUERA Catherine
Embrun - SPYCKERELLE Anne
Embrun – SPYCKERELLE Anne
Embrun - CHASTAN Lucien
Embrun – CHASTAN Lucien

function faGalerie()
{
var mytable = document.getElementById(‘catwalktable’);
var imgLeft = document.getElementById(‘catwalkleft’);
var imgRight = document.getElementById(‘catwalkright’);
if (parseInt(mytable.offsetLeft)>=0 && (parseInt(mytable.offsetLeft)<=(487-mytable.offsetWidth)))
{
imgLeft.style.display = "none";
imgRight.style.display = "none";
}
}

if (window.addEventListener) {
window.addEventListener("load", faGalerie, false);
} else if (document.addEventListener) {
document.addEventListener("load", faGalerie, false);
} else if (window.attachEvent) {
window.attachEvent("onload", faGalerie);
}

 

** Embrun – REGUE Roland


link_module_css(‘template/modules/FICHE_ARTICLE/loupe/loupe.css’);

** Embrun - REGUE Roland
See larger image

/*
* FancyBox – jQuery Plugin
* Simple and fancy lightbox alternative
*
* Examples and documentation at: http://fancybox.net
*
* Copyright (c) 2008 – 2010 Janis Skarnelis
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
*
* Version: 1.3.4 (11/11/2010)
* Requires: jQuery v1.3+
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/

#fancybox-loading {
position: fixed;
top: 50%;
left: 50%;
width: 40px;
height: 40px;
margin-top: -20px;
margin-left: -20px;
cursor: pointer;
overflow: hidden;
z-index: 1104;
display: none;
}

#fancybox-loading div {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 480px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
}

#fancybox-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1100;
display: none;
}

#fancybox-tmp {
padding: 0;
margin: 0;
border: 0;
overflow: auto;
display: none;
}

#fancybox-wrap {
position: absolute;
top: 0;
left: 0;
padding: 20px;
z-index: 1101;
outline: none;
display: none;
}

#fancybox-outer {
position: relative;
width: 100%;
height: 100%;
background: #fff;
}

#fancybox-content {
width: 0;
height: 0;
padding: 0;
outline: none;
position: relative;
overflow: hidden;
z-index: 1102;
border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
z-index: 1101;
}

#fancybox-close {
position: absolute;
top: -15px;
right: -15px;
width: 30px;
height: 30px;
background: transparent url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’) -40px 0px;
cursor: pointer;
z-index: 1103;
display: none;
}

#fancybox-error {
color: #444;
font: normal 12px/20px Arial;
padding: 14px;
margin: 0;
}

#fancybox-img {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
border: none;
outline: none;
line-height: 0;
vertical-align: top;
}

#fancybox-frame {
width: 100%;
height: 100%;
border: none;
display: block;
}

#fancybox-left, #fancybox-right {
position: absolute;
bottom: 0px;
height: 100%;
width: 35%;
cursor: pointer;
outline: none;
background: transparent url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/blank.gif’);
z-index: 1102;
display: none;
}

#fancybox-left {
left: 0px;
}

#fancybox-right {
right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
position: absolute;
top: 50%;
left: -9999px;
width: 30px;
height: 30px;
margin-top: -15px;
cursor: pointer;
z-index: 1102;
display: block;
}

#fancybox-left-ico {
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -30px;
}

#fancybox-right-ico {
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
left: 20px;
}

#fancybox-right:hover span {
left: auto;
right: 20px;
}

.fancybox-bg {
position: absolute;
padding: 0;
margin: 0;
border: 0;
width: 20px;
height: 20px;
z-index: 1001;
}

#fancybox-bg-n {
top: -20px;
left: 0;
width: 100%;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox-x.png’);
}

#fancybox-bg-ne {
top: -20px;
right: -20px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -162px;
}

#fancybox-bg-e {
top: 0;
right: -20px;
height: 100%;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox-y.png’);
background-position: -20px 0px;
}

#fancybox-bg-se {
bottom: -20px;
right: -20px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -182px;
}

#fancybox-bg-s {
bottom: -20px;
left: 0;
width: 100%;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox-x.png’);
background-position: 0px -20px;
}

#fancybox-bg-sw {
bottom: -20px;
left: -20px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -142px;
}

#fancybox-bg-w {
top: 0;
left: -20px;
height: 100%;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox-y.png’);
}

#fancybox-bg-nw {
top: -20px;
left: -20px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’);
background-position: -40px -122px;
}

#fancybox-title {
font-family: Helvetica;
font-size: 12px;
z-index: 1102;
}

.fancybox-title-inside {
padding-bottom: 10px;
text-align: center;
color: #333;
background: #fff;
position: relative;
}

.fancybox-title-outside {
padding-top: 10px;
color: #fff;
}

.fancybox-title-over {
position: absolute;
bottom: 0;
left: 0;
color: #FFF;
text-align: left;
}

#fancybox-title-over {
padding: 10px;
background-image: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancy_title_over.png’);
display: block;
}

.fancybox-title-float {
position: absolute;
left: 0;
bottom: -20px;
height: 32px;
}

#fancybox-title-float-wrap {
border: none;
border-collapse: collapse;
width: auto;
}

#fancybox-title-float-wrap td {
border: none;
white-space: nowrap;
}

#fancybox-title-float-left {
padding: 0 0 0 15px;
background: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’) -40px -90px no-repeat;
}

#fancybox-title-float-main {
color: #FFF;
line-height: 29px;
font-weight: bold;
padding: 0 0 3px 0;
background: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox-x.png’) 0px -40px;
}

#fancybox-title-float-right {
padding: 0 0 0 15px;
background: url(‘/web/20150316040914im_/http://www.tourisme-embrun.com/template/modules/FICHE_ARTICLE/images_v12/fancybox.png’) -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_close.png’, sizingMethod=’scale’); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_nav_left.png’, sizingMethod=’scale’); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_nav_right.png’, sizingMethod=’scale’); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_title_over.png’, sizingMethod=’scale’); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_title_left.png’, sizingMethod=’scale’); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_title_main.png’, sizingMethod=’scale’); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_title_right.png’, sizingMethod=’scale’); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
height: expression(this.parentNode.clientHeight + ‘px’);
}

#fancybox-loading.fancybox-ie6 {
position: absolute; margin-top: 0;
top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + ‘px’);
}

#fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_loading.png’, sizingMethod=’scale’); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_n.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_ne.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_e.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_se.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_s.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_sw.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_w.png’, sizingMethod=’scale’); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’modules/FICHE_ARTICLE/images_v12/fancy_shadow_nw.png’, sizingMethod=’scale’); }

All the views of the product:

** Embrun - REGUE Roland
** Embrun - REGUE Roland
** Embrun - REGUE Roland
** Embrun - REGUE Roland
** Embrun - REGUE Roland

<!–

–>

Send to a friend
Export in pdf  Export in pdf

/* div : détails affichés au survol */
#picto-bulle
{
position: absolute;
top:0px;
left:0px;
visibility: hidden;
font-size:12px;
text-align:left;
cursor:pointer;
width:350px;
z-index:100;
border:1px solid #c2c1c1;
padding: 7px;
color:#000000;
background-color:#eee;
opacity: 0.9;
-moz-opacity: 0.9;
filter: alpha(opacity=90);
}

jQuery(document).ready(function($) {

var $pictoBulle = $(‘#picto-bulle’);
var $pictoLink = $(‘#faPictos span’);

$pictoBulle.css({‘visibility’:’visible’});
$pictoBulle.hide();

$pictoLink.on(‘mouseenter’,function()
{
$pictoBulle.html($(this).data(‘description’));
$pictoBulle.stop(true,true).fadeIn();
})
.on(‘mouseleave’,function()
{
$pictoBulle.hide();
})
.on(‘mousemove’,function(e)
{
var relX = e.pageX+20;
var relY = e.pageY+20;

if((relX+$pictoBulle.width()) > $(window).width()) relX = e.pageX – $pictoBulle.width() -20;

$pictoBulle.css({‘top’:relY,’left’:relX});
});
});






description

Notice

 

Coordonnées du  propriétaire      

REGUE Roland

 Les Charmettes

Allée des Rosiers

05200 EMBRUN

 

Tél. +33 (0)4 92 43 04 31

 

Situation

Alt. 900m

Les Charmettes

Allée des Rosiers

05200 Embrun

Capacité

2 personnes – studio – 30 m² – Maisonnette indépendante 

Confort     2 étoiles

allemand parlé baignoire lave-linge TV terrasse ou jardin

Descriptif

Maisonnette indépendante de plain-pied, exposée Ouest avec terrasse, jardin clos et mobilier de jardin. Idéalement située dans un quartier très calme, à deux pas du centre historique d’Embrun

 

Coin cuisine / Salon avec canapé convertible 2 places.

TV, TNT dans le séjour.

Lave-linge.

Salle de bain avec baignoire et wc.

Chauffage électrique.

Tarifs 2015

Tarifs semaine à partir de 310 €.

Location semaine et courts séjours.

Location tarif étudiant période scolaire.

 

Scannez le code pour accéder à cet article sur votre mobile

$(‘qrCode949’).observe(‘mouseover’, function(event){
$(‘qrCode949′).setStyle({width:’200px’,height:’200px’,top:’-150′,left:’-150′});
});
$(‘qrCode949Container’).observe(‘mouseout’, function(event){
$(‘qrCode949′).setStyle({width:’50px’,height:’50px’,top:’0′,left:’0′});
});

window.fbAsyncInit = function() {
FB.Event.subscribe(‘edge.create’, function(href, widget) {
new Ajax.Request(
« reseaux_sociaux.php »,
{
method: ‘get’,
parameters: {snId: « facebooklike »,referer:href,state:’on’}
}
);
});
FB.Event.subscribe(‘edge.remove’, function(href, widget) {
new Ajax.Request(
« reseaux_sociaux.php »,
{
method: ‘get’,
parameters: {snId: « facebooklike »,referer:href,state:’off’}
}
);
});
};

(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = « //web.archive.org/web/20150316040914/http://connect.facebook.net/fr_FR/all.js#xfbml=1 »;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));

googlePlusOneId455Callback = function(elt)
{
new Ajax.Request(
« reseaux_sociaux.php »,
{
method: ‘get’,
parameters: {snId: « googleplusone »,referer:elt.href,state:elt.state}
}
);
}

Export in pdf

jQuery(document).ready(function($) {
var $onglets = $(‘#cart_quantity td.oda-onglet’);
$onglets.on(‘click’,function()
{
var $this = $(this),
$container = $(‘#onglets_content’);

$onglets.removeClass(‘oda-onglet-hover’);
$this.addClass(‘oda-onglet-hover’);
$container.html(‘‘);
$.get(‘ajax.php’,{page:’fa’,action:’load_onglet_’+$this.data(‘which’),pid:2885}, function(data)
{
$container.html(data);
});
});
});

 
link_module_css(‘template/modules/packs-promo/packspromo.css’);
 
 
 
 
Products

*** Embrun - FAURE René
*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Mont Guillaume"
*** Saint-André d'Embrun - TUFFERY Alain et Christine "Le Pic du Morgon"
Label Tourisme et Handicap
** Embrun - BECKER Roger
*** Embrun - Sci K et K - M. DEUVLETIAN
Baratier - Camping - Les Airelles ****
Embrun - Camping - Les Grillons ***
*** Embrun - COLLOMB Alain
*** Embrun - MASSOT Emmanuel et Anne
Locations de vacances meublées à Embrun 2014
*** Embrun - CROUSIER Michel
** Embrun - REGUE Roland

jQuery(document).ready(function($) {
var mytable3 = document.getElementById(‘pccatwalktable3’);
var imgLeft3 = document.getElementById(‘pccatwalkleft3’);
var imgRight3 = document.getElementById(‘pccatwalkright3’);

if (parseInt(mytable3.offsetLeft)>=0 && (parseInt(mytable3.offsetLeft)<=(487-mytable3.offsetWidth)))
{
imgLeft3.style.display = "none";
imgRight3.style.display = "none";
}
});

 




function initAuctionsHandler()
{
if (http.readyState==4 && http.status == 200)
{
var resultat = http.responseText;

var countd = resultat;
(countd = 0)
{
var secs = countdown % 60;
if (secs < 10) secs = '0'+secs;
var countdown1 = (countdown – secs) / 60;
var mins = countdown1 % 60;
if (mins < 10) mins = '0'+mins;
countdown1 = (countdown1 – mins) / 60;
var hours = countdown1 % 24;
var days = (countdown1 – hours) / 24;
if(document.getElementById(tzcd) != null)document.getElementById(tzcd).innerHTML = "left " + days + " days, "+hours+ " h : " +mins+ " m : "+secs+"s";
to = setTimeout('displayTZCountDown('+(countdown-1)+',\''+tzcd+'\');',999);
} else
{
displayTZCountDownOver(tzcd);
location.reload();
}
}


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

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

jQuery(document).ready(function ($) {
$(‘#ac_keywords’).on(‘focus’, function () {
if (this.value == ‘Search :’) {
this.value =  »;
}
});
});

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

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-xml-257_261-833.html" data-description="

Groups & Scholar tours
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

<a href="http://www.tourisme-embrun.com/en/the-label-pays-et-ville-dart-et-dhistoire-xml-257_261-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

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

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

jQuery(document).ready(function($)
{

var $defilanteSelectionBulle = $(‘#defilante-selection-bulle’);
var $defilanteSelectionLink = $(‘#defilante-selection a’);

$defilanteSelectionBulle.css({‘visibility’:’visible’});
$defilanteSelectionBulle.hide();

$defilanteSelectionLink.on(‘mouseenter’,function()
{
$defilanteSelectionBulle.html($(this).data(‘description’));
$defilanteSelectionBulle.stop(true,true).fadeIn();
})
.on(‘mouseleave’,function()
{
$defilanteSelectionBulle.hide();
})
.on(‘mousemove’,function(e)
{
var relX = e.pageX+20;
var relY = e.pageY+20;

if((relX+$defilanteSelectionBulle.width()) > $(window).width())
{
relX = e.pageX – $defilanteSelectionBulle.width() -20 ;
}

$defilanteSelectionBulle.css({‘top’:relY,’left’:relX});
});
});

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


/* div : détails affichés au survol */
#defilante-picto-bulle
{
position: absolute;
top:0px;
left:0px;
visibility: hidden;
font-size:12px;
cursor:pointer;
width:350px;
z-index:100;
border:1px solid #c2c1c1;
padding: 7px;
color:#000000;
text-align:left;
background-color:#eee;
opacity: 0.9;
-moz-opacity: 0.9;
filter: alpha(opacity=90);
}

bullename = ‘defilante-picto-bulle’;
var boxeDefilantePicto = new BoxeDefilante(‘defilante-picto-bulle’);

$j(document).ready(function($) {
// Initialisation de fancybox pour toutes les images qui utilisaient lightbox (prototype)
// Changement de rel car fancybox ne supporte pas les crochets
$(‘a[rel= »lightbox[products] »]’).attr(‘rel’,’lightboxproducts’).fancybox({
‘titlePosition’ : ‘over’,
‘padding’ : 0,
‘transitionIn’ : ‘none’,
‘transitionOut’ : ‘none’,
‘type’ : ‘image’,
‘changeFade’ : 0
});
});

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/20150316040914/https://ssl. » : « https://web.archive.org/web/20150316040914/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) {}

var gaJsHost = ((« https: » == document.location.protocol) ? « https://web.archive.org/web/20150316040914/https://ssl. » : « https://web.archive.org/web/20150316040914/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-110059-2 »);
pageTracker._trackPageview();
} catch(err) {}

Retour en haut