// Flash Player control
var flashPlayerRef;

function initPlayer() {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	//flashPlayerRef = (isIE) ? window['flashPlayer'] : document['flashPlayer'];
	flashPlayerRef = (isIE) ? window.flashPlayer : window.document.flashPlayer;
}

function callFlashPlay() {
	flashPlayerRef.startPlayer();
}

function callFlashStop() {
	flashPlayerRef.stopPlayer();
}

// Quick Time Player control
function callQtPlay(){
	if(document.all){
		top.frmContent.document.qtMov.Play();
	} else {
		top.frmContent.document.embeds['qtMov'].Play();
	}
}

function callQtStop(){
	if(document.all){
		top.frmContent.document.qtMov.Stop();
	} else {
		top.frmContent.document.embeds['qtMov'].Stop();
	}
}