	    // FlashManager
	    
	    function FlashManager(strFile, intWidth, intHeight, strBackgroundColour)
	    {
	    	var window_mode = 'transparent' //set this to transparent to make flash movie sit in the document order correctly
	    	
	    	document.write('<object\n');
	    	document.write('id="EvaToth"\n');
	    	document.write('classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"\n');
	    	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"\n');
	    	document.write('width="'+intWidth+'"\n');
	    	document.write('height="'+intHeight+'"\n');
	    	document.write('align="center">\n');
	    	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	    	document.write('<param name="movie" value="'+strFile+'" />\n');
	    	document.write('<param name="quality" value="high" />\n');
	    	document.write('<param name="bgcolor" value="'+strBackgroundColour+'" />\n');
	    	document.write('<param name="wmode" value="'+window_mode+'" />\n');	
	    	document.write('<embed\n');
	    	document.write('src="'+strFile+'"\n');
	    	document.write('quality="high"\n');
	    	document.write('bgcolor="'+strBackgroundColour+'"\n');
	    	document.write('width="'+intWidth+'"\n');
	    	document.write('height="'+intHeight+'"\n');
	    	document.write('name="EvaToth"\n');
	    	//document.write('align="left"\n');
	    	document.write('wmode="'+window_mode+'"\n');
	    	document.write('allowScriptAccess="sameDomain"\n');
	    	document.write('type="application/x-shockwave-flash"\n');
	    	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"\n');
	    	document.write('/>\n');
	    	document.write('</object>\n');
	    }

