// JavaScript Document

<!-- 
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="293" height="170"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="simple_gallery" align="top">'
    + '<param name="allowScriptAccess" value="sameDomain" />'
	+ '<param name="movie" value="simple_gallery.swf" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="salign" value="lt" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="simple_gallery.swf" menu="false" quality="high" salign="lt" bgcolor="#ffffff"'
	+ 'width="293" height="170" name="simple_gallery" align="top" 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 = 'This content requires the Macromedia Flash Player.'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->