I'm just going to clear it up a little bit...
Open
notepad.
Copy/paste the following code into the notepad.
// myprintln.js
function myprintln(s) { document.writeln(s); }
Save the notepad as myprintln.js (or anything that you want.
Then
copy/paste the following code in place of your object
<script type="javascript">
myprintln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
myprintln('codebase="http://fpdownload.macromedia.com/pub/shockwave/c abs/flash/swflash.cab#version=8,0,0,0"');
myprintln('id="mars" align="middle" height="130" width="130">');
myprintln('<param name="allowScriptAccess" value="sameDomain">');
myprintln('<param name="movie" value="http://widget-d8.slide.com/widgets/slideticker.swf">');
myprintln('<param name="quality" value="high">');
myprintln('<param name="bgcolor" value="#ffffff">');
myprintln('<embed src="http://widget-d8.slide.com/widgets/slideticker.swf" quality="high" bgcolor="#ffffff"');
myprintln('name="slideticker" allowscriptaccess="sameDomain"');
myprintln('type="application/x-shockwave-flash"');
myprintln('pluginspage="http://www.macromedia.com/go/getflashplayer"' );
myprintln('align="center" height="130" width="130">');
myprintln('</object>');
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/s wflash.cab#version=8,0,0,0"
id="mars" align="middle" height="130" width="130">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="http://widget-d8.slide.com/widgets/slideticker.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="http://widget-d8.slide.com/widgets/slideticker.swf" quality="high" bgcolor="#ffffff"
name="slideticker" allowscriptaccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
align="center" height="130" width="130">
</object>
</noscript>
Edit the src and bgcolor to the values of what you desire in that code.
In your web site
copy/paste the following code into your website's code. (In between <head> and </head>)
<script src="myprintln.js"></script>
Or whatever you saved your file as in place of "myprintln.js'.
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
A little explanation of the code...
If you know PHP (at least a little) you would know that the code "echo" prints lines of text into the screen, that is what println is...
println is basically saying "print line (...);" ln in println is line (that's the easy way I can think of explaining it.
(All of the credit goes to
righteous_trespasser for the code)
"Bring forth therefore fruits meet for repentance:" Matthew 3:8