I have been using a countup clock on every page of my site, the code has been pasted into the table cell where i want the clock to appear, however i am now trying to put the script into an external file, when i type the script location or this---
<script type="text/javascript" language="JavaScript" src="javascript/timecount.js"></script>
--- into the head section the clock appears in the top left of the screen and the rest of the page looses all text and images, so at least i know it can see the external file, so why does the browser stop reading the rest of the html code and how do i get this following code to appear on the table cell i want it to. here's the start of the js.
function setcountup(theyear,themonth,theday)
{
yr=theyear;mo=themonth;da=theday
}
Regards Ian(total js. novice)