/*
EJS libjs
k-network
1999-2003
*/

function VerifTxt(txt)
	{
	aposPlace = txt.indexOf("'",0);
	while (aposPlace >-1)
		{
		temp = txt.substring(0,aposPlace) + '\\' + txt.substring(aposPlace,txt.length);
		txt = temp;
		aposPlace = txt.indexOf("'",aposPlace+2);
		}
	return txt;
	}

function afficheUser(nb)
	{
	if(document.getElementById)
		document.getElementById("nb_user_box").innerHTML = nb;
	else
		alert(nb+' element(s) enregistre(s)');
	}

function get(champs)
        {
        return(champs.options[champs.selectedIndex].value);
        }

