Problem using <script src>
I am having my javascript in
D:\Tomcat 5.0\webapps\rando\WEB-INF\bill\includes folder.
File name is scripter.js
i try to include the javascript in jsp file i have in
D:\Tomcat 5.0\webapps\rando\WEB-INF\bill\jsp directory.
when i refer to the file with the whole path in the src attribute it is working fine
(ie) <script src="D:\Tomcat 5.0\webapps\rando\WEB-INF\bill\includes\scripter.js "></script>
but when i try to access with <script src="\bill\includes\scripter.js"> .
I dont want to use full pathname as i cannot expect all user to have it on the same path. what could be the problem. Please help me. Thank you in advance

