// JavaScript Document
var isFF,isIE;
isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
isFF=!isIE;

function Playit (){
	document.getElementById("MediaPlayer").play();
}
	
function Pause() {
	document.getElementById("MediaPlayer").pause();
}

function Stop(){ 
	document.getElementById("MediaPlayer").stop();
}
function FastForward(){
	document.getElementById("MediaPlayer").FastForward();
	}
function FastReverse(){
	document.getElementById("MediaPlayer").FastReverse();
	}
	
function Play(what){
	if(isIE){
		document.getElementById("divPlayer").innerHTML='<object ID="MediaPlayer" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="277" height="208"><PARAM NAME="FileName" VALUE="'+what+'"><PARAM NAME="ShowControls" VALUE="0"><PARAM NAME="ShowDisplay" VALUE="0"><PARAM NAME="ShowStatusBar" VALUE="0"><PARAM NAME="AutoSize" VALUE="-1"><Embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" filename="'+what+'"  src="'+what+'"  Name=MediaPlayer  ShowControls=0  ShowDisplay=0 ShowStatusBar=0  width=277 height=208></embed></object>';
		}
	else{
		document.getElementById("divPlayer").innerHTML='<object ID="MediaPlayer" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="277" height="208"><PARAM NAME="FileName" VALUE="'+what+'"><PARAM NAME="ShowControls" VALUE="1"><PARAM NAME="ShowDisplay" VALUE="0"><PARAM NAME="ShowStatusBar" VALUE="0"><PARAM NAME="AutoSize" VALUE="0"><Embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows/windowsmedia/download/" filename="'+what+'"  src="'+what+'"  Name=MediaPlayer  ShowControls=1  ShowDisplay=0 ShowStatusBar=0 width=277 height=208></embed></object>';
		document.getElementById("divControls").style.display='none';
		}
return false;
}

function HidePlayer(){
	if(isIE){
		document.getElementById("divPlayer").style.display='none';
		}
	else{
		document.getElementById("divImage").style.visibility='hidden';
		document.getElementById("MainImage").src='images/trans.gif'
		document.getElementById("divPlayer").style.display='block';
		}
	}
