/* the krucial company editeur javascript*/
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;
	}
