hi, am working on a project called online store using java. For the navigation menu bar i used javascript in a jsp page. The problem is am unable to see the image in navigation bar. Since i have no thorough knowledge of javascript please rectify me.Here is my code
<tr>
<td><a href="javascript:;" target="_top" onclick="MM_nbGroup('down','group1','Computers','D:/mith/project/Online_Store/Images/Buttons/Computers_RO.JPG',1)" onmouseover="MM_nbGroup('over','Computers','D:/mith/project/Online_Store/Images/Buttons/Computers_RO.JPG','',1)" onmouseout="MM_nbGroup('out')"><img src="D:/mith/project/Online_Store/Images/Buttons/Computers.JPG" alt="" name="Computers" width="206" height="30" border="0" id="Computers" onload="" /></a></td>
<td><a href="javascript:;" target="_top" onclick="MM_nbGroup('down','group1','Clothes','D:/mith/project/Online_Store/Images/Buttons/Clothes_RO.JPG',1)" onmouseover="MM_nbGroup('over','Clothes','D:/mith/project/Online_Store/Images/Buttons/Clothes_RO.JPG','',1)" onmouseout="MM_nbGroup('out')"><img src="D:/mith/project/Online_Store/Images/Buttons/Clothes.JPG" alt="" name="Clothes" width="206" height="30" border="0" id="Clothes" onload="" /></a></td>
<td><a href="javascript:;" target="_top" onclick="MM_nbGroup('down','group1','Mobile','D:/mith/project/Online_Store/Images/Buttons/Mobile_RO.JPG',1)" onmouseover="MM_nbGroup('over','Mobile','D:/mith/project/Online_Store/Images/Buttons/Mobile_RO.JPG','',1)" onmouseout="MM_nbGroup('out')"><img src="D:/mith/project/Online_Store/Images/Buttons/Mobile.JPG" alt="" name="Mobile" width="206" height="30" border="0" id="Mobile" onload="" /></a></td>
<td><a href="javascript:;" target="_top" onclick="MM_nbGroup('down','group1','Aboutus','D:/mith/project/Online_Store/Images/Buttons/Aboutus_RO.JPG',1)" onmouseover="MM_nbGroup('over','Aboutus','D:/mith/project/Online_Store/Images/Buttons/Aboutus_RO.JPG','',1)" onmouseout="MM_nbGroup('out')"><img src="D:/mith/project/Online_Store/Images/Buttons/Aboutus.JPG" alt="" name="Aboutus" width="206" height="30" border="0" id="Aboutus" onload="" /></a></td>
<td><a href="javascript:;" target="_top" onclick="MM_nbGroup('down','group1','Contactus','D:/mith/project/Online_Store/Images/Buttons/Contactus_RO.JPG',1)" onmouseover="MM_nbGroup('over','Contactus','D:/mith/project/Online_Store/Images/Buttons/Contactus_RO.JPG','',1)" onmouseout="MM_nbGroup('out')"><img src="D:/mith/project/Online_Store/Images/Buttons/Contactus.JPG" alt="" name="Contactus" width="206" height="30" border="0" id="Contactus" onload="" /></a></td>
</tr>
I have used netbeans for the same.
Thanks in advance :)