function playVideo(movie,width,height,ext)
{
    if(ext == '.mov')
    {
        playMOV(movie, width, height);
    }
    else if(ext == '.swf')
    {
        swfmc(movie,width,height);
    }
    else
    {
        playWMV(movie, width, height);
    }
}

function playWMV(movie,width,height)
{
    document.write('<OBJECT id="VIDEO" width="'+ width +'" height="'+ height +'" "CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject">');
	document.write('<param name="'+ movie +'" value="' + movie + '" />');
	document.write('<param name="animationatStart" value="true" />');
	document.write('<param name="transparentatStart" value="true" />');
	document.write('<param name="autoStart" value="true" />');
	document.write('<param name="showControls" value="true" />');
	document.write('<param name="Volume" value="-300" />');
	document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + movie + '" name="MediaPad" width="' + width + '" height="' + height + '" autostart=1 showcontrols=1 volume=-300></embed>');
	document.write('</object>');
}

function playMOV(movie,width,height)
{
    document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" height="'+height+'" width="'+width+'">');
    document.write('<param name="src" value="'+movie+'">');
    document.write('<param name="autoplay" value="true">');
    document.write('<param name="controller" value="true" >');
    document.write('<param name="type" value="video/quicktime" height="'+height+'" width="'+width+'">');
    document.write('<embed src="'+movie+'" height="'+height+'" width="'+width+'" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">');
    document.write('</object>');
}

function swfmc(movie,width,height)
{
	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="');
	document.write(width);
	document.write('" height="');
	document.write(height);
	document.write('">\n');
	document.write('<param name="movie" value="');
	document.write(movie);
	document.write('">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="menu" value="true">\n');
	document.write('<param name="wmode" value="window">\n');
	document.write('<embed src="');
	document.write(movie);
	document.write('" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="');
	document.write(width);
	document.write('" height="');
	document.write(height);
	document.write('" menu="true" wmode="full"></embed>\n');
	document.write('</object>');
}

function playSwf(movie,width,height)
{
	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="');
	document.write(width);
	document.write('" height="');
	document.write(height);
	document.write('">\n');
	document.write('<param name="movie" value="');
	document.write(movie);
	document.write('">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="menu" value="true">\n');
	document.write('<PARAM NAME="wmode" VALUE="transparent">\n');
	document.write('<PARAM NAME="autostart" VALUE="false">\n');
	document.write('<PARAM name="flashvars" value="file=\'movie\'&bufferlength=200">\n');
	document.write('<embed src="');
	document.write(movie);
	document.write('" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="');
	document.write(width);
	document.write('" height="');
	document.write(height);
	document.write('" menu="true" autostart="false" wmode="transparent" flashvars="file=\'movie\'&bufferlength=200"></embed>\n');
	document.write('</object>');	
}