/*
(c) by insign - simply e-business
http://www.insign.ch - info(at)insign(puntk)ch

writes flash into site (container)
created by km, sh, jg
last change: sh, 3.10.2003

history
03.10.2003	km	initial release
*/

// print flash or gifs [START]
// creator 	km	02.09.2003
// last change	
if (!useRedirect) 
{
	if(hasRightVersion)
	{
		var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="flashmenu" '
		+ 'WIDTH="456" HEIGHT="394"'
		+ 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<PARAM NAME="MOVIE" VALUE="flash/kairos.swf">'
		+ '<PARAM NAME="PLAY" VALUE="true">'
		+ '<PARAM NAME="LOOP" VALUE="false">'
		+ '<PARAM NAME="QUALITY" VALUE="high">'
		+ '<PARAM NAME="MENU" VALUE="false">'
		+ '<EMBED SRC="flash/kairos.swf"'
		+ 'WIDTH="456" HEIGHT="394"'
		+ 'PLAY="true"'
		+ 'LOOP="false"'
		+ 'QUALITY="high"'
		+ 'MENU="false"'
		+ 'NAME="flashmenu"'
		+ 'TYPE="application/x-shockwave-flash"'
		+ 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
		+ '</EMBED>'
		+ '</OBJECT>';
		document.write(oeTags);
	}
	else
	{
		var alternateContent = '<IMG SRC="flash/alt_img.jpg" HEIGHT="394" WIDTH="456">' + '<BR>';
		document.write(alternateContent);	
	}
}
// print flash or gifs [END]
