//-------------------------------------------------------------------------------//Description   ://					fonction renvoyant le nom d'un fichier sans le suffixe////Version       : V1.0//---------------//Creation Date : 22/02/2001//--------------- //Author        : NHB//---------------////-------------------------------------------------------------------------------//Modifications ://---------------//////function nhfilename(URL) {	test = new String(URL);	n = test.lastIndexOf("/") + 1;	m = test.lastIndexOf(".");	if (m > 0) {		m = test.length - m; 	}	fileName = test.substring(n,test.length - m);		return fileName;}