<!--
var xPos3 = 20;
var yPos3 = 0;
var step3 = 1;
var delay3 = 30;
var height3 = 0;
var Hoffse3 = 0;
var Woffset3 = 0;
var yon3 = 0;
var xon3 = 0;
var pause3 = true;
var interval3;
img2.style.top = yPos3;
function changePos3() {
width3 = document.body.clientWidth;
height3 = document.body.clientHeight;
Hoffset3 = img2.offsetHeight;
Woffset3 = img2.offsetWidth;
img2.style.left = xPos3 + document.body.scrollLeft;
img2.style.top = 0;
if (yon3) {
yPos3 = yPos3 + step3;
}
else {
yPos3 = yPos3 - step3;
}
if (yPos3 < 0) {
yon3 = 1;
yPos3 = 0;
}
if (yPos3 >= (height3 - Hoffset3)) {
yon3 = 0;
yPos3 = (height3 - Hoffset3);
}
if (xon3) {
xPos3 = xPos3 + step3;
}
else {
xPos3 = xPos3 - step3;
}
if (xPos3 < 0) {
xon3 = 1;
xPos3 = 0;
}
if (xPos3 >= (width3 - Woffset3)) {
xon3 = 0;
xPos3 = (width3 - Woffset3);
}
}
function www_helpor_net3() {
img2.visibility = "visible";
interval3 = setInterval('changePos3()', delay3);
}
www_helpor_net3();
-->
