This page is an example of how you can run two scripts with the onLoad function at the same time. It is a separate script that loads the two scripts.
<SCRIPT>
function LoadFuncs() { FUNCTION #1; FUNCTION #2; }
</SCRIPT>
You may also use more then two scripts, just add another function to this part of the script. This is an example of what my function looks like.
function LoadFuncs() { startclock(); setTimeout('scrollit(100)', 500); }
Now to start these scripts running, you need to put this line in your <
For example, this is what could look like
<BODY onLoad="LoadFuncs();">