
function Element(lchamp1, lchamp2, lchamp3, lchamp4, lchamp5, lchamp6, lchamp7, lchamp8, lchamp9)
{
	this.champ1=lchamp1;
	this.champ2=lchamp2;
	this.champ3=lchamp3;
	this.champ4=lchamp4;
	this.champ5=lchamp5;
	this.champ6=lchamp6;
	this.champ7=lchamp7;
	this.champ8=lchamp8;
	this.champ9=lchamp9;
}

function afficheEnregistrement(lPath, refCategorie,id_enr) {

	var nomCateg;
	nomCateg=tab_Categories[refCategorie].champ2;

// a voir 
// ici la page de détail n'est pas la page de détail classique mais la page /proto/sejour.php
//	url = lPath + nomCateg + "/" + nomCateg + "_detail.php?form_ref=" + id_enr + "&lieninterne=yes";
// a voir !!!
	url =  lPath + "catalogue/sejour.php?form_ref=" + id_enr + "&lieninterne=yes";	
	
	document.location=url;
}

function afficheCategorie(lPath, refCategorie, filtresContraintes, filtresTypes, typeSite){

	var lListe;
	
	// cas particulier : dans ce projet, une seule catégorie est accessible en liens internes
	lListe = "catalogue/result.php";

	var nomCateg;
	nomCateg=tab_Categories[refCategorie].champ2;

	url = lPath + lListe + "?filtre_fk=" + filtresContraintes + "&filtre_type=" + filtresTypes + "&lieninterne=yes";
	document.location=url;
}

function afficheGestionLien(nomChamplien, nomChampUrlLien, nomSelect, typeSite)
{
	var urlLien;
	var optionFenetre;
	var choixLien;
	
	choixLien = document.all[nomSelect].options[document.all[nomSelect].selectedIndex].value
	
	if (choixLien != "") 
	{
		if (choixLien == "mail") {
			urlLien="../liensinternes/lien_mail.php";
			optionFenetre = "toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,width=600,height=200,left=20,top=20";
		}
		else if (choixLien == "externe") {
			urlLien="../liensinternes/lien_externe.php";
			optionFenetre = "toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,width=600,height=300,left=20,top=20";		
		}		
		else if (choixLien == "interne_l") {
			urlLien="../liensinternes/lien_interne_l.php";
			optionFenetre = "toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,width=600,height=200,left=20,top=20";		
		}		
		else if (choixLien == "interne_d") {
		// a voir un seul !!!
			urlLien="/site/site_lien_interne_d.php";
			optionFenetre = "toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,width=600,height=600,left=20,top=20";		
		}		
		window.open(urlLien + "?name="+nomChamplien+"&nameUrl="+nomChampUrlLien+"&typeSite="+typeSite+"&nomSelect="+nomSelect, "", optionFenetre);
	}
}

function precedent(){
	history.go(-1);
}