// CHECK PHONEBOOK FORMS
// BEFORE COMMIT
// author : Laetitia Gyger
// created : 15 juillet 2005

function isPictureBmp(inWhatToSearch) {
	var endsW = /[0-9a-z]+\.bmp$/
	testresult=true
	if (!endsW.test(inWhatToSearch)) {
		testresult=false
	}
	return (testresult)
}

