Hi,
I searched for a "scrolling background" but could not find any so I
had a brilliant idea as to use "a marquee" instead...But ....please tell me that it is possible to
use a marquee inside a function...If you do I will be able to do lots of things...
any help...

PHP Code:
<html>
<
head>
<
script>
<function 
run()
{
document.getElementById("aaa").innerHTML='<marquee direction=left scrollamount=8><img src="res1.gif"></marquee>';
}
</
script>
</
head>
<
body onload="run()" bgcolor="pink">
<
div id="aaa"></div>
</
body>
</
html