var sponsor = 1;

function GoSponsor() 
 {
//  if (sponsor==0) window.open ("http://www.kracherl.at");
  //if (sponsor==1) window.open ("http://www.sveberau.com/keine_homepage.htm");
  //if (sponsor==2) window.open ("http://www.sveberau.com/keine_homepage.htm");
  //if (sponsor==3) window.open ("http://www.dorfwirt.co.at");

  if (sponsor==0) window.location.href="http://www.google.ch";
  if (sponsor==1) window.location.href="http://www.google.ch";
  if (sponsor==2) window.location.href="http://www.google.ch";
  if (sponsor==3) window.location.href="http://www.google.ch";
 }

function rotate() 
{
	if (++sponsor > 4) sponsor = 0;
	if (sponsor==0) document.images[0].src = "balaskovics.jpg";
	if (sponsor==1) document.images[0].src = "brandauer.jpg";
	if (sponsor==2) document.images[0].src = "ds.jpg";
	if (sponsor==3) document.images[0].src = "dorner_gartengeraete.gif";
	window.setTimeout('rotate();',4000);
}

