var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		writeFlash();
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<table width="100%" height="100%" border="0" align="center" bgcolor="#000000"><tr><td><div align="center"><img src="blkflash.jpg" alt="weclik" width="250" height="138"><br><br>This site requires Flash Player 8 or above.<br><strong><a href="http://store.adobe.com/go/getflashplayer">Please click here to download.</a></strong></div></td></tr></table>';
		document.write(alternateContent);  // insert non-flash content
	  }
		// -->
