var checkflag = "false";
function check(field) {
if (checkflag == "false") {
for (i = 0; i < field.length; i++) {
field[i].checked = true;}
checkflag = "true";
return " keine "; }
else {
for (i = 0; i < field.length; i++) {
field[i].checked = false; }
checkflag = "false";
return " alle "; }
}

  function makeArray()
  {
   this.length = makeArray.arguments.length
   for (var i = 0; i < this.length; i++) this[i+1] = makeArray.arguments[i]
  }

  var teams = new makeArray ("../images/tour2.jpg", "../images/tour3.jpg", "../images/tour4.jpg", "../images/tour5.jpg", "../images/tour6.jpg");
  var eatMe = 1;

  function flipper()
  {
   document.applyupdate.translated.focus();
   flipper2();
  }

  function flipper2()
  {
   document.form.image.src = teams[eatMe];
   eatMe += 1;
   if (eatMe == 5) eatMe = 1;
   setTimeout("flipper2()", 2500);
  }

 function select(){document.applyupdate.translated.focus();}