var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version

var oeTags ='<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">'
	+ '<tr>'
	+ '<td valign="middle" align="center">'
	+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="100%"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="inclined_main_v7.swf" /><param name="loop" value="false" /><param name="menu" value="true" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="inclined_main_v7.swf" loop="false" menu="true" quality="best" bgcolor="#ffffff" '
    + 'width="100%" height="100%" name="inclined_main_v7" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>'
	+ '</td>'
	+ '<td width="1"><img src="images/spacer.gif" width="1" height="575" border="0"></td>'
	+ '</tr>'
	+ '<tr>'
	+ '<td height="1"><img src="images/spacer.gif" width="1060" height="1" border="0"></td>'
	+ '<td height="1" width="1"></td>'
	+ '</tr>'
	+ '</table>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<table width="100%" height="100%"><tr align="center"><td valign="middle">'
	+ '<blockquote><h3><font color="#999999" face="Arial, Helvetica, sans-serif">You do not have the latest version of Macromedia Flash Player.</font></h3><br>'
	+ '<font face="Arial, Helvetica, sans-serif"> <table width="60%">'
	+ '<tr><td colspan="2"><p />'
	+ '<center><b>Welcome to<br><br>'
	+ '<a href="http://www.inclinedinc.com"><img src="../images/inclined_no_flash.gif" alt="INCLINED LOGO" border="0"></a><br><br>'
    + 'Design & Development.<BR><BR><BR></b>  The services we offer include:</center><BR>Print Design, Web Design, Development, Branding, CD-ROM, Advertising, Animation, Motion Graphics, Video, Music Scoring, Original Musical Compositions, ActionScript 2.0, HTML, PHP, AJAX, and our proprietary InTune MP3 Player & InSite Content Management System. <BR>InclinedInc.com makes use of <a href="http://www.macromedia.com/software/flash/" target="_new">Macromedia<sup><font size="-1">®</font></sup>Flash 10<sup>'
	+ '<font size="-2">TM</font></sup></a> software. You have an old version of Macromedia Flash Player that cannot play the content we have created.</td></tr><tr><td>'
	+ '<a href="http://www.macromedia.com/go/getflashplayer"><img src="../alternate.gif" border="0" width="88" height="31" /></a></td><td><p />'
	+ 'Why not download and install the latest version now? It is free and will only take a moment.</td></tr></table></font><p />'
	+ '<font face="Verdana, Arial, Helvetica, sans-serif" SIZE="-2">Macromedia and Flash are trademarks of Macromedia, Inc.</font></blockquote>'
	+ '</table>';
    document.write(alternateContent);  // insert non-flash content
  }

