var luBanner = 1;

function goUmtsPvBanner()
{
	if (luBanner == 2)
		window.location.href = '/main/' + linkSprache + '/lco/photovoltaik_1_'  + linkSprache + '.asp';

	if (luBanner == 1)
		window.location.href = '/main/' + linkSprache + '/lco/3g4g_1_'  + linkSprache + '.asp';
}

function rotate()
{
	if (++luBanner > 2)
		luBanner = 1;

	document.images['banner'].src = '/main/bild/photovoltaik/umtspv_banner_' + luBanner + '_' + bildSprache + '.jpg';

	window.setTimeout('rotate();', 4000);
}

onload = rotate;

