/* AUTEUR: jean-christophe GIGNIAC */
/* Date de création: 12/01/2002 */
function getSelect(champs)
	{
	chemin = eval("document.ParaForm."+champs);
	return(chemin.options[chemin.selectedIndex].value);
	} 
function getText(champs)
	{
	chemin = eval("document.ParaForm."+champs);
	return(chemin.value);
	}
