function PlayIt(anObj)
{
  anObj.Play();
}
function StopIt(anObj)
{
  anObj.Stop();
}
function StepIt(anObj, Direction)
{
  anObj.Step(Direction);
}
function RewindIt(anObj)
{
  anObj.Rewind();
}
function MuteIt(anObj)
{
  Volume = anObj.GetMute();
  if (Volume == 0)
  	anObj.SetMute(1);
  else 
  	anObj.SetMute(0);
}
function LoadJSPN(TheMovie)
{
	MovieURL = "http://media.walch.biz/baseball/jspn/"+TheMovie+".mov";
	document.movie.SetURL(MovieURL);
}
function LoadPlayer(Player, TheMovie)
{
	MovieURL = "http://media.walch.biz/movies/"+Player+"/"+TheMovie;
	document.movie.SetURL(MovieURL);
}
function LoadAction(Movie)
{
	MovieURL = "http://media.walch.biz/baseball/action/"+TheMovie+".mov";
	document.movie.SetURL(MovieURL);
}
function DisplayMovieName(anObj)
{
	MovieURL = anObj.GetURL();
	PluginStatus = anObj.GetPluginStatus();
	TimeScale = anObj.GetTimeScale();
	Duration = anObj.GetDuration();
	WorkSeconds = (Duration / TimeScale)
	Seconds = WorkSeconds.toFixed(1);
	Size = anObj.GetMovieSize();
	Description = "If you would like the fullsize version (30 Frames Per Second) of this movie please contact sgw@walch.biz and with permission of the players parents the movie can be made available.  The movies featured here have been compressed down to 12 frames per second which limits its overall quality.  The currently loaded movie has the following properties: \n\nMovie Length (seconds):\t   "+Seconds+"\nMovie Size (bytes):\t\t"+Size+"\nMovie Status:\t\t\t  "+PluginStatus+"\nDirect URL:\t "+MovieURL;
	alert(Description);
}
