<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if( hasRightVersion ) 
{  
   var BodyTop = '<body >'
               + '<table border="0" cellpadding="0" align="center" width="488">'
               + '  <tr>   '
               + '    <td >';
   
   var oeTags = '<object id  ="flashMovie"'
+ 'codeBase ="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"'
+ 'height   ="403"'
+ 'width    ="488"'
+ 'classid  ="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>'
+ '<PARAM NAME="FlashVars"          VALUE="csConfigFile=http://paralegaltech.com/lectures/TakeOnNews/Columbine042306/Columbine042306_config.xml&csColor=FFFFFF"/>'
+ '<PARAM NAME="Movie"              VALUE="http://paralegaltech.com/lectures/TakeOnNews/Columbine042306/Columbine042306_controller.swf"/>'
+ '<PARAM NAME="WMode"              VALUE="Window"/>'
+ '<PARAM NAME="Quality"            VALUE="best"/>'
+ '<PARAM NAME="SAlign"             VALUE="TL"/>'
+ '<PARAM NAME="Menu"               VALUE="FALSE"/>'
+ '<PARAM NAME="BGColor"            VALUE="FFFFFF"/>'
+ '<EMBED id          ="EmbedflashMovie"'
+ '       flashvars   ="csConfigFile=http://paralegaltech.com/lectures/TakeOnNews/Columbine042306/Columbine042306_config.xml&csColor=FFFFFF"'
+ '       src         ="http://paralegaltech.com/lectures/TakeOnNews/Columbine042306/Columbine042306_controller.swf"'
+ '       quality     ="best"'
+ '       bgcolor     ="FFFFFF"'
+ '       width       ="488"'
+ '       height      ="403"'
+ '       pluginspace ="http://www.macromedia.com/go/getflashplayer" >'
+ '<\/EMBED>'
+ '<\/OBJECT>';
   
   document.write(BodyTop); 
   document.write(oeTags); 
} 
else 
{  
   var BodyTop = '<body style="background-color:#CCCCCC" >'
               + '<table border="0" cellpadding="0" align="center" width="488">'
               + '  <tr>   '
               + '    <td >';
   
   // flash is too old or we can't detect the plugin
   var alternateContent = '<div align="center"><img src="Columbine042306_nofp_bg.gif" width="293" height="280"></div>'
                        + '<div align="center">'
                        + '<p style="width: 250px;font-family:Arial, Helvetica, sans-serif;font-size: x-small;color: #003300;margin-top: -200px;text-align:left;">The Camtasia Studio video content presented here requires the latest version of the Macromedia Flash Player.  Please update your version of this free player by'
                        + '&nbsp; <a href="http://www.macromedia.com/go/getflashplayer" target="_blank">downloading here</a>.</p></div>'
                        
   document.write(alternateContent);  // insert non-flash content
   document.write(BodyTop);  // insert non-flash content  
}
// -->
