document.write("<DIV id=mylizi style='HEIGHT: 100px; LEFT: 125px; POSITION: absolute; TOP: 114px; WIDTH: 100px; Z-INDEX: 1;'>");
document.write("<table  border='0' cellspacing='0' cellpadding='0'><tr><td></td></tr></table><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='180' height='180'>");
document.write("  <param name='movie' value='flash/ad.swf'>");
document.write("  <param name='quality' value='high'>");
document.write("  <param name='wmode' value='transparent'>");
document.write("  <embed src='flash/ad.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='180' height='180'></embed>");
document.write("</object>");
document.write("</DIV>");

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;
mylizi.style.top = yPos;

function changePos() {
	width = document.body.clientWidth;
	height = document.body.clientHeight;
	Hoffset = mylizi.offsetHeight;
	Woffset = mylizi.offsetWidth;
	mylizi.style.left = xPos + document.body.scrollLeft;
	mylizi.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 start() {
	mylizi.visibility = "visible";
	interval = setInterval('changePos()', delay);
}

function pause_resume() {
	if(pause) {
		clearInterval(interval);
		pause = false;
	}
	else {
		interval = setInterval('changePos()',delay);
		pause = true;
	}
}

start();
//  End -->