Possible Duplicate:
Is it possible to pass GET or POST variable to external javascript
I am wondering whether is it possible to pass any variable to external java-script file
For example
I have this
<script type="text/javascript" src="gallery.js"></script>
I'd like to know if it's possible to pass an argument to that script file, and if so, how do I read it in the external file? Something like this perhaps:???
<script type="text/javascript" src="myscript.js?id=123"></script>
Thank you