<!--
var DHTML = (document.getElementById || document.all || document.layers);

function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}

var imgleft = -100;

function start(){
setInterval('move(1)', 10)
}

function move(amount)
{
	if (!DHTML) return;
	var x = new getObj('move');
	if (document.getElementById){
		if ((imgleft + 200)<(document.body.clientWidth)){ imgleft += amount; }
		else {imgleft=-100;}
		x.style.left = imgleft + 1;
	}
	else if (document.layers){
		if ((imgleft + 200)<(window.innerWidth)){ imgleft += amount; }
		else {imgleft=-100;}
		x.style.left = imgleft + 1;
	}
	else {}
}
//-->