Where did these js files come from?
The code in GoStats.Js looks very wrong. (If it's yours that's ok, then you can easily fix it, if not then probably some other advice would be more helpful.)
This is the _minimum_ I'd do to the GoStats.Js file;
it's currently formatted as HTML - meaning you have the code inside a <script> tag. But this is a JS file, not an HTML file,
a) so you can completely remove the <noscript> part,
b) and you can change
<script type="text/javascript">_gos='c5.gostats.com';_goa=1057310; _got=3;_goi=18;_gol='web stats browser';_GoStatsRun();</script>to just
_gos='c5.gostats.com';_goa=1057310; _got=3;_goi=18;_gol='web stats browser';_GoStatsRun();c) the
<br/><a target="_blank" href="http://c5.gostats.com/click/1057310/web-counter/stats-home"
style="font: 9px sans-serif" title="web stats browser">web stats browser</a> part belongs in your page, presumably as a menu item or button or something, not in the script file.
d)
http://gostats.com/js/counter.js needs to be added to your scripts list in the webserver, it shouldn't be embedded here.