function insertFlash(fFilename, fWidth, fHeight)
{
	document.write('<object type="application/x-shockwave-flash" data="'+fFilename+'" width="'+fWidth+'" height="'+fHeight+'">\n'); 
    document.write('<param name="movie" value="'+fFilename+'" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('</object>\n');
	  
}

function insertFlashVideo(videoFilename)
{
    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="450" height="297">\n');
    document.write('<param name="movie" value="'+videoFilename+'" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<embed src="'+videoFilename+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="297"></embed>\n');
    document.write('</object>\n');	  
}

function insertQTVideo(videoFilename)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="448" height="252">\n'); 
    document.write('<param name="src" value="'+videoFilename+'" />\n');
    document.write('<param name="controller" value="true" />\n');
	document.write('<param name="autoplay" value="false" />\n');
    document.write('<object type="video/quicktime" data="'+videoFilename+'" width="448" height="252" class="mov">\n');
	document.write('<param name="controller" value="true" />\n');
	document.write('<param name="autoplay" value="false" />\n');
    document.write('An error occurred displaying the video. Please tell your course administrator.\n');
    document.write('</object>\n');
    document.write('</object>\n');
	  
}
