// JavaScript Document
// erstellt am 16.05.08 Flügge (c) etone intermedia GmbH

function ifFlash()
{
    // Mac Firefox seems to have problems with transparent flashs. We disable the flash layer for Mac Firefox
	if ((navigator.userAgent.indexOf("Firefox") >= 0) && (navigator.userAgent.indexOf("OS X") >= 0)) {return(false);}
    if (typeof(getFlashVersion) != "undefined") {return((getFlashVersion() >= 8) ? true: false);}
	result = false;
    	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"])
    	{
    		result = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
    	}
    	else if (document.all && (navigator.appVersion.indexOf("Mac")==-1))
    	{
 		eval ('try {var xObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");if (xObj)	result = true; xObj = null; } catch (e)	{}');
    	}
	return result;
	
}
function checkIfFlashDoElse(src) {
	if (ifFlash() != false)  {
			html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" title="Höchste Qualitätsanspr&uuml;che - Metallbearbeitung seit 50 Jahren mit heute mehr als 40 Mitarbeitern." codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="960" height="150" title="Karl Kampka - Höchste Qualitätsanspr&uuml;che">';
			html +='<param name="movie" value="'+src+'" /><param name="quality" value="high" />	<embed src="'+src+'" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="960" height="150"></embed></object>';
			document.getElementById('ifIsJsAndFlash').innerHTML = html;
			document.getElementById('ifIsJsAndFlash').style.zIndex = '99';
			document.getElementById('ifIsJsAndFlash').style.display = 'block';
			document.getElementById('ifNoJsAndFlash').style.zIndex = '20';
	}
}
