

<!-- Begin

var xPos_1 = 350;

var yPos_1 = document.body.clientHeight;

var step_1 = 1;

var delay_1 = 30; 

var height_1 = 0;

var Hoffset_1 = 0;

var Woffset_1 = 0;

var yon_1 = 0;

var xon_1 = 0;

var pause_1 = true;

var interval_1;

dd_1.style.top = yPos_1;

function changePos_1() {

width_1 = document.body.clientWidth;

height_1 = document.body.clientHeight;

Hoffset_1 = dd_1.offsetHeight;

Woffset_1 = dd_1.offsetWidth;

dd_1.style.left = xPos_1 + document.body.scrollLeft;

dd_1.style.top = yPos_1 + document.body.scrollTop;

if (yon_1) {

yPos_1 = yPos_1 + step_1;

}

else {

yPos_1 = yPos_1 - step_1;

}

if (yPos_1 < 0) {

yon_1 = 1;

yPos_1 = 0;

}

if (yPos_1 >= (height_1 - Hoffset_1)) {

yon_1 = 0;

yPos_1 = (height_1 - Hoffset_1);

}

if (xon_1) {

xPos_1 = xPos_1 + step_1;

}

else {

xPos_1 = xPos_1 - step_1;

}

if (xPos_1 < 0) {

xon_1 = 1;

xPos_1 = 0;

}

if (xPos_1 >= (width_1 - Woffset_1)) {

xon_1 = 0;

xPos_1 = (width_1 - Woffset_1);

   }

}

function start_1() {

dd_1.visibility = "visible";

interval_1 = setInterval('changePos_1()', delay_1);

}


start_1();

//  End -->

