/*
function StopErrors() {
return true;
}
window.onerror = stopErrors();
*/
function definePlayer()	{
if (navigator.appName == "Netscape"){
RealPlayer = window.document.RealPlayer;
}
else	{
RealPlayer;
}
}
function Play()	{
RealPlayer.DoPlay();
}
function Stop()	{
RealPlayer.DoStop();
}
function Mute()	{
if (RealPlayer.GetMute()==true)	{
RealPlayer.SetMute(false);
}else{
RealPlayer.SetMute(true);
}
}
function setVol(intVolume)	{
RealPlayer.SetVolume(intVolume)
}
var BroadBand = "rtsp://FILL IN THIS BIT WHEN AVAILABLE";
var NarrowBand = "rtsp://FILL IN THIS BIT WHEN AVAILABLE";

function Switch(sourceFile)	{
	if (RealPlayer.GetSource() != sourceFile)	{
		RealPlayer.SetSource(sourceFile);
		RealPlayer.DoPlay();
	}
	else	{
	RealPlayer.DoPlay();
	}
}

