﻿function fixflash()
{
	// aga tegelikult see funktsioon ikka ei tööta küll.
	
	theObjects = document.getElementsByTagName("object");
	for (var i = 0; i < theObjects.length; i++)
	{
		theObjects[i].outerHTML = theObjects[i].outerHTML;
	}
}

function pasteheader()
{
	// the whole point of this thing here is to fix the last MS IE so called "update".
	document.write('<object width="980" height="147" data="/gfx/scroll.swf" type="application/x-shockwave-flash">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="/gfx/scroll.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('</object>');
}