Well, what I'm pretty sure of is that the file is not being found for some reason.
There is an error coming up in the Javascript Console that reads:
Error: syntax error
Source File:
http://jkkpcnew/chronologystore/fred.js
Line: 1
Source Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
The source file is a link, which, if you click on it, produces:
----------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html dir=ltr>
<head>
<style>
a:link {font:8pt/11pt verdana; color:FF0000}
a:visited {font:8pt/11pt verdana; color:#4e4e4e}
</style>
<meta NAME="ROBOTS" CONTENT="NOINDEX">
<title>The page cannot be found</title>
<meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
</head>
<script>
function Homepage(){
<!--
// in real bits, urls get returned to our script like this:
// res://shdocvw.dll/http_404.htm#
http://www.DocURL.com/bar.htm
//For testing use DocURL = "res://shdocvw.dll/http_404.htm#ht
-------------------------------------------------------
which you may or may not recognize as the ASP Error 404 page, file not found.
So, when loading the requested page, it's looking for 'fred.
js', not finding it, grabbing the 'ASP Error 404' page and squawking about the DOCTYPE line in that file. Squawking because it's finding an HTML file and not a Javascript text file?
I'm confused. I'm pretty sure this is a configuration issue of some sort I'm poking around the documentation, but I really don't know where to begin to look.
Thanks,
JK