var flashinstalled = 0;
var flashversion = 8;
if (navigator.plugins && navigator.plugins.length){
	if (navigator.plugins["Shockwave Flash"] || navigator.plugins["Shockwave Flash 2.0"])
		flashinstalled = 2;
}
else if (navigator.mimeTypes && navigator.mimeTypes.length){
	if (navigator.mimeTypes['application/x-shockwave-flash'] && navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin)
		flashinstalled = 2;
}
else{
	for(i = 8; i > 0; i--){
		try{
			var flash = new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + i);
			flashinstalled = 2;
			flashversion = i;
			break;
		} catch(e){}
	}
}

function showHeader(file, width, height)
{
	//if(flashinstalled == 2 && flashversion > 2)
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'"><param name="movie" value="'+file+'"><param name="quality" value="high"><embed src="'+file+'" quality="high" width="'+width+'" height="'+height+'" name="text" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
}

function showWMVVideo(file, width, height)
{
	//if(flashinstalled == 2 && flashversion > 2)
		document.write('<OBJECT ID="MediaPlayer" WIDTH="'+width+'" HEIGHT="'+height+'" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject"><PARAM NAME="FileName" VALUE="'+file+'"><PARAM name="autostart" VALUE="true"><PARAM name="ShowControls" VALUE="true"><param name="ShowStatusBar" value="false"><PARAM name="ShowDisplay" VALUE="false"><EMBED TYPE="application/x-mplayer2" SRC="'+file+'" NAME="MediaPlayer" WIDTH="'+width+'" HEIGHT="'+height+'" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="1"></EMBED></OBJECT>');
}

function showMOVVideo(file, width, height)
{
	//if(flashinstalled == 2 && flashversion > 2)
		document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="'+height+'" width="'+width+'"><param name="src" value="'+file+'"><param name="autoplay" value="true"><param name="type" value="video/quicktime" height="'+height+'" width="'+width+'"><embed src="'+file+'" height="'+height+'" width="'+width+'" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></object>');
}

function showAVIVideo(file, width, height)
{
	//if(flashinstalled == 2 && flashversion > 2)
		document.write('<OBJECT CLASSID="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95F" HEIGHT="'+height+'" WIDTH="'+width+'" NAME=Msshow1 ID=Msshow1><PARAM NAME="FileName" VALUE="'+file+'"><PARAM NAME="autoStart" VALUE="true"><PARAM NAME="showControls" VALUE="false"><PARAM NAME="PlayCount" VALUE="20"><EMBED src="'+file+'" width="'+width+'" height="'+height+'" controller="false" autostart="true" loop=true></EMBED></OBJECT>');
}