Is this your include file? Look, you don't need all the tags and other
stuff in there, just the js code, in your case you just need a single line
alert("hey");
That will work just fine.
Also, forget all that stuff about looking in temporary internet files etc,
the easiset way to find out if the browser can "see" the js file is to
type the address of the js file directly into the address bar and see what
happens.
HTH
Phil
>-------------------------------------
...The ma.js script is just a simple script that goes like this :
<html>
<head>
<script language=javascript>
alert("hey")
</script>
</head>
<body>
</body>
</html>
>-------------------------------------