function enableFlash (divID) {
    //Nur bei IE aktivieren!
    if (navigator.appName == 'Microsoft Internet Explorer') {        
        var re  = new RegExp ("MSIE ([0-9]{1,}[\.0-9]{0,})");
        if (re.exec (navigator.userAgent) != null) {
                var divO = document.getElementById (divID);
                var htmlS = divO.innerHTML; 
//        	htmlS = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="tx_slideshow_pi1" width="535" height="379" align="center"><param name="loop" value="true"><param name="menu" value="false"><param name="quality" value="best"><param name="scale" value="noscale"><param name="bgcolor" value="#FEF3E8"><param name="swliveconnect" value="false"><param name="FlashVars" value="file=index.php%3Ftype%3D9005%26slideshow%3D3%26random%3D0%26transition%3Dfade%26timer%3D10%26navigation%3D0"><param name="movie" value="typo3conf/ext/slideshow/pi1/jpgrotator.swf"><param name="wmode" value="opaque"><embed src="typo3conf/ext/slideshow/pi1/jpgrotator.swf" FlashVars="file=index.php%3Ftype%3D9005%26slideshow%3D3%26random%3D0%26transition%3Dfade%26timer%3D10%26navigation%3D0" swliveconnect="false" loop="true" menu="false" quality="best" scale="noscale" bgcolor="#FEF3E8" width="535" height="379" name="tx_slideshow_pi1" align="top" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="opaque"></embed></object>';

alert(htmlS);
//                htmlS = htmlS.replace(/\n/g, "");
//                htmlS = htmlS.replace(/\r/g, "");
//                htmlS = htmlS.replace(/(.)*<object/i, "<object");
//                htmlS = htmlS.replace(/<\/object>(.)*/i, "</object>");
                htmlS = htmlS.replace(/id=tx_slideshow_pi1/gi, "");
                htmlS = htmlS.replace(/align=center/gi, "");
                htmlS = htmlS.replace(/typo3conf\/ext\/slideshow\/pi1\/jpgrotator\.swf/gi, "fileadmin/java/snow.swf");

alert(htmlS);
                
        	divO.innerHTML = htmlS;
        }
    }
}


function enableFlash2 (divID) {
var divO = document.getElementById ("inhalt");
var htmlS = divO.innerHTML; 
htmlS = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="tx_slideshow_pi1" width="535" height="379" align="center"><param name="loop" value="true"><param name="menu" value="false"><param name="quality" value="best"><param name="scale" value="noscale"><param name="bgcolor" value="#FEF3E8"><param name="swliveconnect" value="false"><param name="FlashVars" value="file=index.php%3Ftype%3D9005%26slideshow%3D3%26random%3D0%26transition%3Dfade%26timer%3D10%26navigation%3D0"><param name="movie" value="typo3conf/ext/slideshow/pi1/jpgrotator.swf"><param name="wmode" value="opaque"><embed src="typo3conf/ext/slideshow/pi1/jpgrotator.swf" FlashVars="file=index.php%3Ftype%3D9005%26slideshow%3D3%26random%3D0%26transition%3Dfade%26timer%3D10%26navigation%3D0" swliveconnect="false" loop="true" menu="false" quality="best" scale="noscale" bgcolor="#FEF3E8" width="535" height="379" name="tx_slideshow_pi1" align="top" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="opaque"></embed></object>';
divO.innerHTML = htmlS;
}
