/*
* Author: Tom Klingenberg
* Js workaround for Swf
*/
function RunFlash(sUrl, sAlt)
{	
    document.write('<object type="application/x-shockwave-flash" data="' + sUrl + '" width="800" height="600" id="kfflash">\n');
    document.write('<param name="movie" value="' + sUrl + '" />\n');
	document.write('<param name="movie" value="#000000" />\n');
	document.write(sAlt);
    document.write('</object>\n');
}