document.write('<object id="VIDEO" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab# Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="225">');
document.write('<param name="fileName" value="http://windowsmedia.arkena.com/innovisio/videohotel/kunder/citylift/City_lift256.wmv" />');
document.write('<param name="animationatStart" value="true" />');
document.write('<param name="transparentatStart" value="true" />');
document.write('<param name="autoStart" value="true" />');
document.write('<param name="showControls" value="true" />');
document.write('<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">');	
document.write('<PARAM name="uiMode" value="none">');	
	
document.write('<param name="Volume" value="-300" />');
document.write('<param name="defaultFrame" VALUE="annonce" />');
document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="http://windowsmedia.arkena.com/innovisio/videohotel/kunder/citylift/City_lift256.wmv" name="MediaPlayer1" width=280 height=225 autostart=0 showcontrols=1 volume=-300 defaultFrame=annonce></embed>');
document.write('</object>')

function Pause(){
document.getElementById('VIDEO').Pause();
}
function Play(){
document.getElementById('VIDEO').Play();
}
function Stop(){
document.getElementById('VIDEO').Stop();
}
function Rewind(){
document.getElementById('VIDEO').Rewind();
}
function MuteMe () 
{ 
	x = document.getElementById('VIDEO').settings.mute; 
	if (x == 0) 
	{ 
		document.getElementById('VIDEO').settings.mute =  "1"; 
	}else{
		document.getElementById('VIDEO').settings.mute =  "0";
	} 
} 
		
function UnMuteMe ()
{
	document.getElementById('VIDEO').settings.mute =  "0"; 
} 
function VolumeUp () 
{
	X = document.getElementById('VIDEO').settings.volume; 
	document.getElementById('VIDEO').settings.volume = X +  10;     
}

function VolumeDown () 
{ 
	X = document.getElementById('VIDEO').settings.volume; 
	document.getElementById('VIDEO').settings.volume = X - 10; 
} 