function ShowPopupGalerie(sPopup) {
  var d = document.getElementById(sPopup);
  	for (var i = 1; i<=10; i++) {
  		if (document.getElementById('popup'+i)) {document.getElementById('popup'+i).style.display='none';}
  	}
  if (d) {d.style.display='block';}
}

function ShowPopupGalerie(sPopup, iMax) {
  var d = document.getElementById(sPopup);
  	for (var i = 1; i<=iMax; i++) {
  		if (document.getElementById('popup'+i)) {document.getElementById('popup'+i).style.display='none';}
  	}
  if (d) {d.style.display='block';}
}


// SELECT PERSONNALISE
function permuteSelect(sSelect) {
	sObject = document.getElementById(sSelect);
  Effect.toggle(sSelect, 'blind', {duration:0.5});
}
function colorThis(obj){
	obj.style.background = '#c3122e';
	obj.style.color		 = '#fff';
}
function decolorThis(obj){
	obj.style.background = '#fff';
	obj.style.color		 = '#c3122e';
}
function validAndCache(sSelect, sDiv, sFormValue, txt2, sNameForm){
	document.getElementById(sNameForm).value = sFormValue;
	Effect.BlindUp(sDiv, {duration:0.5});
	document.getElementById(sSelect).innerHTML = txt2;
}
function cacheBloc() {
	document.getElementById('bt-envoyer-recevoir-doc').style.display='none';
	document.getElementById('contact_form_col_droite_mess').style.display='none';	
	document.getElementById('contact_form_col_droite_devis').style.display='none';	
}


function OnPlus(idImg) {
  document.getElementById('img-plus-photo-'+idImg).src = "/images/plus-anime.gif";
}
function OffPlus(idImg) {
  document.getElementById('img-plus-photo-'+idImg).src = "/images/plus-galerie.gif";
}
