var run = 1;

function startstop() {
      if((window.location.search == "&run=0") || (run == 0)) {
        document['SLIDEGIF'].src = "/TREFFPUNKT/BILDERGALERIEN/stopp.gif";
        run = 1;
		window.setTimeout("weiter();",3000);
      } else {
        run = 0;
        document['SLIDEGIF'].src = "/TREFFPUNKT/BILDERGALERIEN/slide.gif";
      }
}

    function weiter() {
      if (run == 0) return;
      var link = document.getElementsByName("linknext")[0];
      self.location.href = link + "&run=1";
    }

    function slideshow() {
	loc = window.location.search;
	locresult = loc.search(/\brun=1\b/);
	  if (locresult != -1) {
        document['SLIDEGIF'].src = "/TREFFPUNKT/BILDERGALERIEN/stopp.gif";
        window.setTimeout("weiter()",3000);
	  } else {
	    run = 0;
	  }
    }