
function ouvrirPage(ID_prestation,calque)
	{
	var tabCalque = Array();
	//Tableau de rapprochement entre les calques de la carto et les menus du site
	tabCalque['pique_nique'] = "loisirs_sports/aires-pique-nique.php";
	tabCalque['autre_loisir'] = "loisirs_sports/cinema-autres-loisirs.php";
	tabCalque['camping_ferme'] = "hebergement/campings.php";
	tabCalque['chambre_hote'] = "hebergement/chambres-tables-hotes.php";
	tabCalque['camping'] = "hebergement/campings.php";
	tabCalque['gite_enfant'] = "hebergement/gites-meubles.php";
	tabCalque['gite_sejour'] = "hebergement/gites-meubles.php";
	tabCalque['gite_france'] = "hebergement/gites-meubles.php";
	tabCalque['hotels'] = "hebergement/hotels.php";
	tabCalque['peche'] = "loisirs_sports/lacs-peche.php";
	tabCalque['produits_locaux'] = "gastronomie/produits-locaux-marches-vente-ferme.php";
	tabCalque['patrimoine_civil'] = "patrimoine/monuments.php";
	tabCalque['patrimoine_religieux'] = "patrimoine/monuments.php";
	tabCalque['point_de_vue'] = "loisirs_sports/vues-panoramiques.php";
	tabCalque['resto'] = "gastronomie/restaurants-cuisine-tradionnelle.php";
	tabCalque['rando'] = "loisirs_sports/randonnees-sentiers-chemins.php";
	tabCalque['visite_artisan'] = "patrimoine/artisanat.php";
	tabCalque['circuit_visite'] = "patrimoine/visites-circuits.php";
	
	
	//Ouverture du nouveau document
	document.location.href= "/fr/" + tabCalque[calque] + "?numPresta=" + ID_prestation + "#" + ID_prestation;
	
	}
		
function openDiaporama(idPrestataire,langue,e)
	{
	var objMasque = window.parent.document.getElementById('masqueListe');
	var hauteurPage = window.parent.document.getElementById('page').offsetHeight+134;
	objMasque.style.height = hauteurPage+'px';
	objMasque.style.display='block';
	
	// calcul de la position de la souris et du calque a afficher
	var posx = 220;
	var posy = 0;
	posy = window.parent.document.documentElement.scrollTop+window.parent.document.body.scrollTop;
	// calcul pour pc et mac (2ème)
	if(posy<410)
		posy=410;
	else
		posy=posy+200;
	

	var frame = window.parent.document.getElementById('ifrdiaporama');
	frame.src = '/swf/diaporama.php?idPrestataire='+idPrestataire+'&langue='+langue;
	frame.target = '/swf/diaporama.php?idPrestataire='+idPrestataire+'&langue='+langue;	
	frame.style.left = ''+posx+'px';
	frame.style.top = ''+posy+'px';
	//window.open("/swf/diaporama.php?type="+type+"&id="+id+"&langue="+langue+'&dossier='+dossier,"diapWindow");
	}

function quitterDiaporama()
	{
	var objMasque = window.parent.document.getElementById('masqueListe');
	objMasque.style.display='none';
	}