Hi, If I understand your question properly, keep all images of application in a dir and write these images names in properties file(i18n_*.properties) with key names and in jsp page call that key name.
Example. suppose you need to display an image (x1.gif) for en locale and other image(x2.gif) for fr locale. then in your properties file Application resources or I18N props file) In *_en.properties maintain a key sampleImage = x1.gif, In *_fr.properties maintain a key sampleImage = x2.gif. and in your jsp call <img src="images/<bean:message key='sampleImage'/>" > to render it in page. HTH TIA rayaku -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

