var rp;
var lg;
var i = 20;
var j;
function Init() {
  rp = eval(document.getElementById("roterPunkt"));
  
  rp.style.position = "absolute";
  rp.style.top = 10;
  rp.style.left = 800;
  window.setTimeout("sehen()",2000);
  window.setTimeout("Move()",2000);
}
function Move() {
  if (i <205) {
  i=i+4;
  rp.style.top = 10+i;
  rp.style.left = 800-(i);
  window.setTimeout("Move()",50);
}
else{
i=0;
Moveup();
}
}
function Moveup() {
  if (i <70) {
  i=i+2;
  rp.style.top = 215-i;
  rp.style.left = 595-i;
  window.setTimeout("Moveup()",50);
}
else {
i=0;
Movedown();
}
}
function Movedown() {
  if (i <75) {
  i=i+2;
  rp.style.top = 145+i;
  rp.style.left = 525-i;
  //window.scroll (1,(i/2));
  //p=(i/2);
  window.setTimeout("Movedown()",50);
}
else {
i=0;
Moveright();
}
}
function Moveright() {
  if (i <150) {
  i=i+2;
  rp.style.left = 450-i;
    //p=p+(i/10);
  //window.scroll (1,(p/2));
  //window.scroll (1,(i*3));
window.setTimeout("Moveright()",50);

  //document.ball.src="r8083a.gif"
 }
}
function sehen() {
  document.getElementById("roterPunkt").style.visibility = "visible";
}
