var PlayerSourceSite = "http://test.zixi.com/Sport5Page/";
var IE_PlayerVersion = "#Version=1,1,739,1858";
var IE_PlayerCLSID = "CLSID:1C72E5E8-C622-4f09-A0B6-D0C0700999D1";
var FF_MimeVersion = "application/x-zixi-player-vmcl-739";

function create_player(width, height)
{
	var OCX_ADDRESS = PlayerSourceSite + "ZixiPlayer.ocx" + IE_PlayerVersion;
	var _app = navigator.appName;
	if (_app == 'Microsoft Internet Explorer')
	{
		document.writeln('<object');
		document.writeln('	id = "Vid1"');
		document.writeln('	name = "Vid1"');
		document.writeln('	codebase= ' + OCX_ADDRESS );
		document.writeln('	width = "' + width + '"');
		document.writeln('	height = "' + height + '"');
		document.writeln('	classid = "' + IE_PlayerCLSID + '"');
		document.writeln('	align = "center"');
		document.writeln('	border = "0"');
		document.writeln('>');
		document.writeln('</object>');
	}
	else
	{
		document.writeln('<embed');
		document.writeln('	id = "Vid1"');
		document.writeln('	name = "Vid1"');
		document.writeln('	width = "' + width + '"');
		document.writeln('	height = "' + height + '"');
		document.writeln('	align = "center"');
		document.writeln('	border = "0"');
		document.writeln('	type = "' +  FF_MimeVersion + '"');
		document.writeln('	pluginspage = "' + PlayerSourceSite + 'zixi_plugin.xpi"');
		document.writeln('></embed>');
	}
}
