function showFlash(strPathDepth) {
		var strPath = strPathDepth + 'flash/';
		// Wenn Bildschirmauflösung gleich 800x600
		if ((screen.width >= 800 && screen.height >= 600) && (screen.width < 1024 && screen.height < 768)) {
			// Schreibe Flashobjekt
			document.write('<object style="z-index:1" classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%">');
			//width="630" height="61">');
			// Benutze Flashdatei für Auflösung 800x600
			document.write('<param name="movie" value="' + strPath + 'animation800.swf" />');
			document.write('<embed src="' + strPath + 'animation800.swf" quality="high" scale="exactfit" menu="false" width="100%" height="100%" swLiveConnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
		} else if ((screen.width >= 1024 && screen.height >= 768) && (screen.width < 1280 && screen.height < 1024)){
			// Schreibe Flashobjekt
			document.write('<object style="z-index:1" classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%">');
			//width="840" height="62">');
			// Benutze Flashdatei für Auflösung größer als 800x600
			document.write('<param name="movie" value="' + strPath + 'animation1024.swf" />');
			document.write('<embed src="' + strPath + 'animation1024.swf" quality="high" scale="exactfit" menu="false" width="100%" height="100%" swLiveConnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
		} else {
			// Schreibe Flashobjekt
			document.write('<object style="z-index:1" classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%">');
			//width="1049" height="62">');
			// Benutze Flashdatei für Auflösung größer als 800x600
			document.write('<param name="movie" value="' + strPath + 'animation1280.swf" />');
			document.write('<embed src="' + strPath + 'animation1280.swf" quality="high" scale="exactfit" menu="false" width="100%" height="100%" swLiveConnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
		}
		// Schreibe Flashobjekt
		document.write('<param name="quality" value="high" />');
		// Schreibe Flashobjekt
		document.write('<param name="scale" value="exactfit" />');
		// Schreibe Flashobjekt
		document.write('</object>');
}

