我用一段JS实现了图片在网页内全屏浮动。但是我现在想要在同一个页面上飘动2个图片,怎么修改啊?直接再这段代码下面复制一遍肯定是不行的了。浮动JS源码如下...<div id="img" style="position:absolute;"> 
<a href="http://www.asrc.gov.cn/club/dispbbs.asp?boardid=19&ID=10335&replyID=10335"; target="_blank"> 
<img src="../Images/neupic.gif"; border="0"></a> 
</div> 
<SCRIPT LANGUAGE="JavaScript"> 
<!-- 
var xPos = 20; 
var yPos = document.body.clientHeight; 
var step = 1; 
var delay = 30; 
var height = 0; 
var Hoffset = 0; 
var Woffset = 0; 
var yon = 0; 
var xon = 0; 
var pause = true; 
var interval; 
img.style.top = yPos; 
function changePos() { 
width = document.body.clientWidth; 
height = document.body.clientHeight; 
Hoffset = img.offsetHeight; 
Woffset = img.offsetWidth; 
img.style.left = xPos + document.body.scrollLeft; 
img.style.top = yPos + document.body.scrollTop; 
if (yon) { 
yPos = yPos + step; 

else { 
yPos = yPos - step; 

if (yPos < 0) { 
yon = 1; 
yPos = 0; 

if (yPos >= (height - Hoffset)) { 
yon = 0; 
yPos = (height - Hoffset); 

if (xon) { 
xPos = xPos + step; 

else { 
xPos = xPos - step; 

if (xPos < 0) { 
xon = 1; 
xPos = 0; 

if (xPos >= (width - Woffset)) { 
xon = 0; 
xPos = (width - Woffset); 


function www_helpor_net() { 
img.visibility = "visible"; 
interval = setInterval('changePos()', delay); 

www_helpor_net(); 
--> 
</script>