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

// dhtml overlays problematic under linux until transparent wmode arrives in flash 10, 
if ( hasReqestedVersion && !/linux|x11/.test(navigator.userAgent.toLowerCase()) ) {

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="743" height="204" id="banner-cursor" align="middle">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="allowFullScreen" value="false" />');
document.write('<param name="movie" value="flashcontent/home_01.swf" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="loop" value="true" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="bgcolor" value="#ff0000" />');
document.write('<embed src="flashcontent/home_01.swf" quality="high" wmode="transparent" bgcolor="#ff0000" width="743" height="204" name="banner-cursor" align="middle" loop="true" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');

} else {

	//they really don't have flash, add download href
	if (!hasReqestedVersion)
		document.write('<a target=_blank href=http://www.adobe.com/go/getflash/>');

	document.write('<img border=0 src=images/banners/solutions.jpg width=743 height=152 />'); // insert flash-content replacement

	//they really don't have flash, end href
	if (!hasReqestedVersion)
		document.write('</a>');

}

