// JavaScript Document
function ZoominFlashMovie()
{
var flashMovie=getFlashMovieObject("flv_Player");
flashMovie.Zoom(90);
}
function ZoomoutFlashMovie()
{
var flashMovie=getFlashMovieObject("flv_Player");
flashMovie.Zoom(110);
}
function SendDataToFlashMovie(videovar)
{
	if(navigator.appName == "Microsoft Internet Explorer") {
iframeName = "videotrack";
url = "http://db.gospelmusicchannel.com/videos/videotrack.php?vidid="+videovar;
	window.frames[iframeName].location = url; 
} else {
url = "http://db.gospelmusicchannel.com/videos/videotrack.php?vidid="+videovar;
	window.frames.videotrack.location = url; 
}
var flashMovie=getFlashMovieObject("flv_Player");
flashMovie.SetVariable("/:setId", videovar);
flashMovie.TPlay("/:loadNew");

}
function getFlashMovieObject(movieName)
{
if (window.document[movieName]) 
{
return window.document[movieName];
}
if (navigator.appName.indexOf("Microsoft Internet")==-1)
{
if (document.embeds && document.embeds[movieName])
return document.embeds[movieName]; 
}
else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
{
return document.getElementById(movieName);
}
}