1<div id="img" style="position:absolute;; width: 200; height: 151"><a href="#" target="_blank"><img src="images/170_19.gif" width="325" height="139" border="0" /></a></div> 2<script language="javascript">
 3 var xPos = 20;
 4var yPos = 10;
 5img.style.left= xPos;
 6img.style.top = yPos;
 7var step = 1;
 8var delay = 30
 9var width,height,Hoffset,Woffset;
10var y = 1;
11var x = 1;
12var interval;
13img.visibility = "visible";function changePos() 
14{
15width = document.body.clientWidth;
16height = document.body.clientHeight;
17Hoffset = img.offsetHeight;
18Woffset = img.offsetWidth;
19if (y) 
20{
21    yPos = yPos + step;
22}

23else 
24{
25    yPos = yPos - step;
26}

27if (yPos < 0
28{
29    y = 1;
30    yPos = 0;
31}

32if (yPos >= (height - Hoffset)) 
33{
34    y = 0;
35    yPos = (height - Hoffset);
36}

37if (x) 
38{
39    xPos = xPos + step;
40}

41else 
42{
43    xPos = xPos - step;
44}

45if (xPos < 0
46{
47    x = 1;
48    xPos = 0;
49}

50if (xPos >= (width - Woffset)) 
51{
52    x = 0;
53    xPos = (width - Woffset);
54}

55img.style.left = xPos + document.body.scrollLeft;
56img.style.top = yPos + document.body.scrollTop;
57}
function start() 
58{
59interval = setInterval('changePos()', delay);
60}
function pause_resume() 
61{
62    clearInterval(interval);
63}

64start();
65
</script>