As you said earlier that some are displayed and some are not, I guess it must be the case that the images are displayed on a certain page of your application and not displayed entirely on some other page. Might be because the later one is in a different directory structure.
To refer the image from a html / jsp, say in ROOT/Dhiraj you will have to write
Code:
<img src='images/header1_r2_c4.gif'/>
But, if the file using the image is in say, ROOT/someotherfolder, then it would be:
Code:
<img src='../images/header1_r2_c4.gif'/>
Do let me know if we are on the same lines. If possible, paste some snippets of conditions where the images don't work.