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"'
    + 'width="920" height="630"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="portfolio030.swf" /><param name="quality" value="high" /><param name="menu" value="false" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="portfolio030.swf" quality="high" bgcolor="#ffffff"" '
    + 'width="920" height="630" name="portfolio028" wmode=transparent align="middle"'
    + 'play="true"'
	+ 'menu="false"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } 
  else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div align=center><h1 style="color:#808080; font-family: arial, verdana, sans-serif;">Jen Kelly Photography</h1><p style="font-size: 10px; color:#808080; font-family: arial, verdana, sans-serif;">Jen Kelly Photography specializes in headshots, portraits, family portraits, and high school senior portrait photos for the White Bear Lake and Lino Lakes area of Minnesota.</p><p style="font-size: 10px; color:#808080; font-family: arial, verdana, sans-serif;">You appear to be visting this site from browser or mobile device that does not support Flash. <a href="http://www.facebook.com/portraitsbyjen?ref=sgm">Click here</a> to visit Jen Kelly Photography on Facebook.</p></div>';
    document.write(alternateContent);  // insert non-flash content
  }
