<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width=420 height=314>'
    + '<param name=movie value="intro.swf">'
    + '<param name=quality value=high>'
    + '<param name=bgcolor value=#CCCC33>'
    + '<embed src="intro.swf" quality=high bgcolor=#CCCC33 width=420 height=314 type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '</embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<img src="http://www.musicmanage.com/images/welcome_image.jpg" alt="Music Management of Boston, MA" border="0" />'
   	+ '';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
