

//Videofunktionen für die ActiveX Player
function StartMeUp ()

{
	document.all.Player.uiMode="none";
    Player.controls.play();
}

function ShutMeDown ()
{
	document.all.Player.uiMode="invisible";
    Player.controls.stop();
}

function Pause ()
{
    Player.controls.pause();
}

//////////////////////////////////////////////////




