The easiest way in this case, though not the most versatile, would just be to save your scroller contents inside an external .js file that appears above the memory scroller code itself. So inside something like "contents.js", you'd have:
Code:
var memorycontent='<nobr><span style="font: bold 13px Verdana">Thank you for visiting <a href="http://www.dynamicdrive.com">Dynamic Drive.</a> If you find this script useful, please consider <a href="http://www.dynamicdrive.com/link.htm">linking to</a> or <a href="http://www.dynamicdrive.com/recommendit/">recommending</a> Dynamic Drive.</span></nobr>'
Then on your page, it'd be referenced as:
Code:
<script type="text/javascript" src="contents.js"></script>
<script...>
rest of memory scroller minus "memorycontent" variable here...
</script>
Bookmarks