
var is_opera =(navigator.userAgent.indexOf("Opera")!= -1)
if (is_opera)
{
alert('Your browser appears to be Opera.  This browser is not fully supported, you can use this browser but may experience difficulties viewing the video clips. Please use Internet Explorer 5 or greater. Re-directing you to the support page.');
window.self.location.href="http://www.be-me.org/support.asp";
}

var is_pc=(navigator.platform.indexOf("Win32")!= -1)
var is_netscape = (navigator.appName.indexOf("Netscape")!= -1)
var is_ie =(navigator.userAgent.indexOf("MSIE")!= -1)
var is_nt = (navigator.userAgent.indexOf("Windows NT;") !=-1 )
var is_98=(navigator.userAgent.indexOf("Windows 98") !=-1 )
var player="no_wmp";
var WMP7;
var embed=false;
// active x cannot be used to test in nt nor 98 enviroments
if  ((is_ie) && (is_pc) && (is_nt==false) && (is_opera==false) &&  (is_98==false))
{
embed=true;
//alert('pc and ie but not nt4');

	try
	{
	WMP7 = new ActiveXObject('WMPlayer.OCX');
	}

	catch(exception)
	{
	alert('It appears Windows Media Player is not installed on this computer. Re-directing you to the support page. Please follow instructions on how to install Windows Media Player');
	window.self.location.href="http://www.be-me.org/support.asp";
	}


	if (WMP7)
	{
	player = "wmp7";
	}
	else
	{
	player = "wmp6";
	}

}
else if  ((is_ie) && (is_pc) && (is_nt))
{
embed=true;
//alert('pc and ie and nt4');
player="wmp6";
}

else if  ((is_ie) && (is_pc) && (is_98))
{
embed=true;
//alert('pc and ie and 98');
player="wmp6";
}

//alert (player);
//alert (embed);
document.cookie="player="+ player +";expires=Tue, 28 Dec 2010 00:00:00;path=/;";
document.cookie="embed="+ embed +";expires=Tue, 28 Dec 2010 00:00:00;path=/;";

