/***********************************
/* this function allows you to remove the javascript from your HTML file that writes the Flash Player version
/* if it is less than required by your Flash content and less than 6.0.65.
/* Replace that HTML with this:
/*		<script type="text/javascript">
/*			showFPVersion();
/*		</script>
************************************/

function showFPVersion() 
{
  var version = deconcept.SWFObjectUtil.getPlayerVersion();
				
  if (document.getElementById && (version['major'] > 0)) 
  {
    document.getElementById('version1').value = version['major'] +"."+ version['minor'] +"."+ version['rev'];
	
	if (document.getElementById('version2') != null)
	  document.getElementById('version2').value = version['major'] +"."+ version['minor'] +"."+ version['rev'];
  } 
  else 
  {
	document.getElementById('version1').value = "noflash";
	
	if (document.getElementById('version2') != null)
	  document.getElementById('version2').value = "noflash";
  }
}
