function writeIntroFlash() {
	// Check to see if the version meets the requirements for playback
	if(DetectFlashVer(6,0,0)) {
		// if we've detected an acceptable version
		var flashIntroContent = '<embed src="flash/screamzone_intro_092004.swf" width="760" height="338" autostart="false" />';
		// embed the Flash Content SWF when all tests are passed
		window.document.write(flashIntroContent);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var alternateIntroContent = '<img src="/images/intro_flash_placeholder.jpg" width="760" height="338" border="0" alt="" />';
		// insert non-flash content
		document.write(alternateIntroContent);
	}
}
