// Ausblendung Standbild

function PlayerShow()
{
	teaser = document.getElementById("standbild");
	movie = document.getElementById("player");
	if (teaser) {
		teaser.style.display = "none";
	}
	if (movie) {
		movie.style.display = "block";
	}

	PlayerPlay();
}

function PlayerHide()
{
	teaser = document.getElementById("standbild");
	movie = document.getElementById("player");
	
	if (teaser) {
		teaser.style.display = "block";
	}
	if (movie) {
		movie.style.display = "none";
	}

	PlayerStop();
}

// Player Steuerung
function PlayerPlay()
{
	if (!document.wmp) return 1;
	document.wmp.Play();
}

function PlayerPause()
{
	if (!document.wmp) return 1;
	document.wmp.Pause();
}

function PlayerStop()
{
	if (!document.wmp) return 1;
	document.wmp.Stop();
}

// Browser-Detection
function GetBrowser()
{
   var agt=navigator.userAgent.toLowerCase();
   if( ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1)) )
       return "IE";
   else if( ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
         && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
         && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1)) )
       return "Netscape";
   else
       return "unknown";
}
