//funkcia pre JS zapis flash objektu. Musi byt externe inak to v IE neslo
function writeFlashWebJET(text)
{
   //window.alert(text);		
	try
	{
		//fix pre MSIE 8 a MOV subory
		if (text.indexOf("video/quicktime")!=-1 && navigator.userAgent.indexOf("Trident/4.0")!=-1)
		{
			text = text.replace(" data=", " ietest=");
			text = text.replace(" type=", " ietest2=");
			text = text.replace("<OBJECT ", "<OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' ");
		}
	}
	catch (ex)
	{
	   	
	}
   document.write(text);
}
function writeFlashWebJETToDiv(text, writeToDivId)
{
	try
	{
		//fix pre MSIE 8 a MOV subory
		if (text.indexOf("video/quicktime")!=-1 && navigator.userAgent.indexOf("Trident/4.0")!=-1)
		{
			text = text.replace(" data=", " ietest=");
			text = text.replace(" type=", " ietest2=");
			text = text.replace("<OBJECT ", "<OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' ");
		}
	}
	catch (ex)
	{
	   	
	}
	var divEl = document.getElementById(writeToDivId);
	
	if (divEl != null) divEl.innerHTML = text;
	else document.write(text);
}
