
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DoInsertImage() - Insère la photo dans le frame principal
*/
function DoInsertImage(iImgName,iImgDesc,iImgPhotographe)
{
	var ObjCadre=document.getElementById("CadrePhoto");

	ObjCadre.src = iImgName;
	ObjCadre.alt = iImgDesc;

}

function DoInsertImage2(iImgName,iImgDesc,iImgPhotographe, idImg, urlGallery)
{
	var ObjCadre=document.getElementById("CadrePhoto");

	ObjCadre.src = iImgName;
	ObjCadre.alt = iImgDesc;
	
	var ObjaCadre=document.getElementById("aCadrePhoto");
	ObjaCadre.href = "/gallerific/" + urlGallery + "?keepThis=true&amp;idImg=" + idImg + "&amp;TB_iframe=true&amp;height=540&amp;width=680";
	
	var ObjaCadre2=document.getElementById("aCadrePhoto2");
	ObjaCadre2.href = ObjaCadre.href;

}

function popupMapFiche(typeFiche, id) { 
	window.open("/popupmap.php?TypeFiche=" + typeFiche + "&FicheID="+id,"","width=930,height=700"); 
}

function popupMapCircuit(id) { 
	window.open("/popupmapCircuit.php?ID="+id,"","width=930,height=700"); 
}

function changePage(page) {
	document.frmGalerie.curPage.value = page;
	document.frmGalerie.submit(); 
}


function expandImage(photoID, categoryID, langue) {
	url="/visionneuse.php?ID=" + photoID + "&GalerieID=" + categoryID + "&amp;L=" + langue;
	window.open(url, "", "width=534,height=630");
}


var strTitle = encodeURIComponent(document.title);
var strUrl = encodeURIComponent(document.location.href);



function HideZoneInteractive() {
	$(".zoneDescriptif").hide();
	$(".zoneAvantages").hide();
	$(".zoneQualite").hide();

}



function onClickDescriptif() {
    HideZoneInteractive();
    document.getElementById('Descrip').className = "On";
    document.getElementById('Avantages').className = "";
    document.getElementById('Qualite').className = "";
    $(".zoneDescriptif").show();
    document.getElementById('avantagesvideo').src = loc;
    document.getElementById('qualitevideo').src = loc;
}

function onClickAvantages() {
    HideZoneInteractive();
    document.getElementById('Descrip').className = "";
    document.getElementById('Avantages').className = "On";
    document.getElementById('Qualite').className = "";
    $(".zoneAvantages").show();
}

function onClickQualite() {
    HideZoneInteractive();
    document.getElementById('Descrip').className = "";
    document.getElementById('Avantages').className = "";
    document.getElementById('Qualite').className = "On";
    $(".zoneQualite").show();
}

