function getPathBaseNotes() {
//Retourne le chemin d'accès à la base Notes de la fenêtre ouverte qui appelle cette fonction
	gsNomModule="getPathBaseNotes";
	pageURL=window.location;
	path=pageURL.pathname.toLowerCase();
	nsfPos=path.indexOf(".nsf");
	if (nsfPos>0) path=path.substring(0, nsfPos+5);
	return path;
}