function strcmp(str1, str2)
{
	return ( ( str1 == str2 ) ? 0 : ( ( str1 > str2 ) ? 1 : -1 ) );
}

function BlattDrehenRechts( iId )
{
	document.getElementById(iId).src = 'gfx/blaetter/herbst/kastanie_klein_gedreht.gif';
}

function BlattDrehenNormal( iId )
{
	if(strcmp(sActualSite, iId) < 0 || strcmp(sActualSite, iId) > 0)
	{
		document.getElementById(iId).src = 'gfx/blaetter/herbst/kastanie_klein.gif';
	}
}

function ShowFlashVideo()
{
	sLink = "flash/leif-film-waldkindergarten-flensburg.html";
	
	FlashWindow = window.open( sLink, "Film", "resizable=no, status=no, width=550, height=425, left=auto, top=auto");
	FlashWindow.focus();
}