function addQuickTimeMovie(movieName, width, height)
{
	document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+height+'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">');
	document.write('<PARAM NAME="controller" VALUE="TRUE">');
	document.write('<PARAM NAME="type" VALUE="video/quicktime">');
	document.write('<PARAM NAME="autoplay" VALUE="true">');
	document.write('<PARAM NAME="src" VALUE="'+movieName+'">');
	document.write('<PARAM NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/index.html">');
	document.write('<EMBED width="'+width+'" height="'+height+'" CONTROLLER="TRUE" SRC="'+movieName+'" type="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/index.html"></EMBED>');
	document.write('</OBJECT>');
}
function addMediaPlayerMovie(movieName, width, height)
{
	document.write('<OBJECT CLASSID="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="'+width+'" height="'+height+'" id="Player">');
	document.write('<PARAM NAME="captioningID" VALUE="cc">');
	document.write('<PARAM NAME="AutoRewind" VALUE="true">');
	document.write('<PARAM NAME="AutoStart" VALUE="true">');
	document.write('<PARAM NAME="URL" VALUE="'+movieName+'">');
	document.write('<PARAM NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/index.html">');
	document.write('<EMBED width="'+width+'" height="'+height+'" SRC="'+movieName+'" type="application/x-mplayer2" PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/" ID="Player" NAME="URL" VALUE="'+movieName+'" AUTOSTART="true"></EMBED>');
	document.write('</OBJECT>');
}
function addMiniBanner(bannerName)
{
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="120" height="60" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0">');
	document.write('<PARAM NAME="controller" VALUE="TRUE">');
	document.write('<PARAM NAME="type" VALUE="application/x-shockwave-flash">');
	document.write('<PARAM NAME="src" VALUE="'+bannerName+'">');
	document.write('<PARAM NAME="pluginspage" VALUE="http://www.macromedia.com/go/getflashplayer">');
	document.write('<PARAM NAME="movie" VALUE="'+bannerName+'">');
	document.write('<param name="quality" value="high">');
	document.write('<EMBED width="120" height="60" CONTROLLER="TRUE" SRC="'+bannerName+'" type="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('</OBJECT>');
}
