<!-- Begin 
var xPos = 760; 
var xPos1 = 20;
var yPos = document.body.clientHeight; 
var yPos1 = document.body.clientHeight+50; 
var step = 1; 
var delay = 50; 
var height =0; 
var Hoffset = 0; 
var Hoffset1 = 0; 
var Woffset = 0; 
var Woffset1 = 0; 
var yon = 0; 
var xon = 0; 
var yon1 = 0; 
var xon1 = 0; 
var pause = true; 
var interval; 
var interval1; 


function changePos() { 
width = document.body.clientWidth; 
height = document.body.clientHeight; 

Hoffset = img2.offsetHeight; 
Woffset = img2.offsetWidth; 
img2.style.left = xPos + 2 ;
img2.style.top = yPos + 2;
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 changePos2() { 


width1 = width;
height1 = height;

Hoffset1 = img3.offsetHeight; 
Woffset1 = img3.offsetWidth; 
img3.style.left = xPos1 + 2; 
img3.style.top = yPos1 + 2; 
if (yon1) { 
yPos1 = yPos1 + step; 
} 
else { 
yPos1 = yPos1 - step; 
} 
if (yPos1 < 0) { 
yon1 = 1; 
yPos1 = 0; 
} 
if (yPos1 >= (height1 - Hoffset1)) { 
yon1 = 0; 
yPos1 = (height1 - Hoffset1); 
} 
if (xon1) { 
xPos1 = xPos1 + step; 
} 
else { 
xPos1 = xPos1 - step; 
} 
if (xPos1 < 0) { 
xon1 = 1; 
xPos1 = 0; 
} 
if (xPos1 >= (width1 - Woffset1)) { 
xon1 = 0; 
xPos1 = (width1 - Woffset1); 
} 

} 
function start() { 

img2.visibility = "visible"; 
interval = setInterval('changePos()', 40); 

} 
function start1() { 

img3.visibility = "visible"; 
interval1 = setInterval('changePos2()', 50); 

} 
start(); 
start1(); 

function stop(){
clearInterval(interval);
}

function stop1(){
clearInterval(interval1);
}

// End --> 
