function writeFlash(swfPath){
	var swfObjectTagID = swfPath.split(".")[0];
	//all supporting functions are contained in flashFunctionsInclude.cfm
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {
		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"" + swfObjectTagID + "\" codebase=\"" + parent.location.protocol + "://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0\">");
		//document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"" + swfObjectTagID + "\" codebase=\"" + parent.location.protocol + "://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0\" width=\"" + swfWidth + "\" height=\"" + swfHeight + "\">");
		document.write("<param name=\"movie\" value=\"" + swfPath + "\">");
		document.write("<param name=\"quality\" value=\"high\">");
		document.write("<param name=\"wmode\" value=\"transparent\" />");
		document.write("<embed src=\"" + swfPath + "\" quality=\"high\" pluginspage=\"" + parent.location.protocol + "://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" wmode=\"transparent\"></embed>");
		//document.write("<embed src=\"" + swfPath + "\" quality=\"high\" pluginspage=\"" + parent.location.protocol + "://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + swfWidth + "\" height=\"" + swfHeight + "\"></embed>");
		document.write("</object>");
	}else{
		document.write("<p>You must have Flash " + requiredMajorVersion + " or higher to view this content.</p>");
	}
}

function writeSSFlash(swfPath){
	var swfObjectTagID = swfPath.split(".")[0];
	//all supporting functions are contained in flashFunctionsInclude.cfm
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {
		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"" + swfObjectTagID + "\" codebase=\"" + parent.location.protocol + "://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0\" width=\"784\" height=\"295\">");
		//document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"" + swfObjectTagID + "\" codebase=\"" + parent.location.protocol + "://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0\" width=\"784\" height=\"295\">");
		document.write("<param name=\"movie\" value=\"" + swfPath + "\">");
		document.write("<param name=\"quality\" value=\"high\">");
		document.write("<param name=\"wmode\" value=\"transparent\" />");
		document.write("<embed src=\"" + swfPath + "\" quality=\"high\" pluginspage=\"" + parent.location.protocol + "://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"784\" height=\"295\"></embed>");
		//document.write("<embed src=\"" + swfPath + "\" quality=\"high\" pluginspage=\"" + parent.location.protocol + "://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + swfWidth + "\" height=\"" + swfHeight + "\"></embed>");
		document.write("</object>");
	}else{
		document.write("<p style=\"text-align:center;padding:147px 0 0 0;\"><a href=\"javascript: createSession('OK');\">Oklahoma</a> | <a href=\"javascript: createSession('TX');\">Texas</a></p>");
	}
}