function GetFlash()
{

	var flash = true;

	if(navigator.appName == "Opera") {
		flash = false;
		for (var i = 0; i < navigator.plugins.length; i++) {
			if( navigator.plugins[i].name.search("Shockwave\sFlash") != -1) {
				flash = true;
			}	
		}
	}
	if(document.getElementById('themepic') != null)
	{
		var content = ''
		content += '<object width="735" height="335" data="download_files/flash/connectiv_intro.swf" type="application/x-shockwave-flash">';
		content += '<param name="wmode" value="opaque">';
		content += '<param name="movie" value="download_files/flash/connectiv_intro.swf">';
		content += '<param name="quality" value="best">';
		content += '<img width="735" height="335" border="0" src="/images/platzhalter_flash.jpg" alt="connectiv! eSolutions GmbH"/>';
		if(flash == true) {
			content += '<embed wmode="transparent" src="download_files/flash/connectiv_intro.swf" quality="best" type="application/x-shockwave-flash" width="735" height="335"></embed>';
		}
		content += '</object>';
		document.getElementById('themepic').innerHTML = content;
	}
}