sorry, I probablyt should start new topic...
i had a problem with reaching my javasciprt in cgi-bin, so i put it in a public folder. but still having the same problem.
maybe it is a problem with javascript file? (it works when it is in a header). My page is for IE only, i would worry about NS later.
here is code (scrolling script if someone needs it):
>var rep
function scrollEvent(dir)
{
if (dir=="up")
{
scrollUp()
rep=setTimeout("scrollEvent('up')",150)
}
if (dir=="down")
{
scrollDown()
rep=setTimeout("scrollEvent('down')",150)
}
}
function clearEvent()
{
clearTimeout(rep)
}
function scrollDown()
{
scrollObject=document.getElementById("storyCell")
scrollObject.doScroll("down")
}
function scrollUp()
{
scrollObject=document.getElementById("storyCell")
scrollObject.doScroll("up")
}
this is a content of my scrolling.js file which i am trying to get in the header of my index.php file through this line :
<script src="scrolling.js" type="text/javacsript"></script>
i start thinking that external .js files are not working with .php files