var CK = "";
var IDENT = false ;

var paragEnCours = -1 ;

var tabAff = new Array() ;

function GOB(AObj) { 
   return document.getElementsByName(AObj)[0] ; 
}

function GID(AObj) { 
   return document.getElementById(AObj) ; 
}

function setParam(AParam, AValue, ASend) {
  GOB(AParam).value = AValue ;
  if (ASend) GOB('fm').submit() ;
}

function routeForm(AForm, AAdresse) {
  GOB(AForm).action = AAdresse ;
  GOB(AForm).submit() ;
}

function trim(ATxt) {
	return ATxt.replace(/^\s+/g,'').replace(/\s+$/g,'') ;
}



function mailPhotos(Titre, IdCollection, IdImage) 
{ 
	var s = location.href ;
	chaine_mail = "mailto:?subject= Photos de l'ADAC : " + Titre; 
	chaine_mail += "&body= Je recommande cette page : " + Titre ; 
	chaine_mail += ". Consultable &agrave; l'adresse : " + s.substring(0, (s.lastIndexOf("?") > -1?s.lastIndexOf("?"):s.length) ) ;
	chaine_mail += "%3Fidx=" + IdImage + "%26idg=" + IdCollection ; 
	location.href = chaine_mail; 
} 

function mailVideo(Titre, IdCollection, IdVideo) 
{ 
	var s = location.href ;
	chaine_mail = "mailto:?subject= Vid&eacute;o de l'ADAC : " + Titre; 
	chaine_mail += "&body=Je recommande cette page : " + Titre ; 
	chaine_mail += ". Consultable &agrave; l'adresse : " + s.substring(0, (s.lastIndexOf("?") > -1?s.lastIndexOf("?"):s.length) ) ;
	chaine_mail += "%3Fidx=" + IdVideo + "%26v=1%26idg=" + IdCollection ; 
	location.href = chaine_mail; 
} 
