function JKS_ShowFlash()
{
	if (document.getElementById("image"))
	{
/*		var myFlash = document.createElement("object");
		myFlash.data="fileadmin/flash/NewComerIntro.swf"
		myFlash.width=778
		myFlash.height=332
		myFlash.className="flash"
*/

		var embed = document.createElement('embed');
		 embed.setAttribute('width',778);
		 embed.setAttribute('height',332);
		 embed.setAttribute('src',"fileadmin/flash/NewComerIntro.swf");

	
                            
		var Ausgabebereich = document.getElementById("image");
//		alert(Ausgabebereich.childNodes[0]);
		Ausgabebereich.removeChild(Ausgabebereich.childNodes[0]);

		
		Ausgabebereich.appendChild(embed);

	}

}

function preload()
{
one = new Image();
 one.src = "3.swf"; 
}

