/*function show_embed( project_catalog, wdt, hgh, allow_fs, overstretch, movi_path, image_path, kuda )
{	var txt = '<embed type="application/x-shockwave-flash" ';
	txt += 'pluginspage="http://www.macromedia.com/go/getflashplayer" ';
	txt += 'width="' + wdt + '" height="' + hgh + '" bgcolor="#FFFFFF" ';
	txt += 'name="theMediaPlayer"';
	txt += 'src="' + project_catalog + 'images/mediaplayer.swf"';
	txt += 'flashvars="file=' + movi_path + '&overstretch=' + overstretch + '&width=' + wdt + '&height=' + hgh + '&displaywidth=' + wdt + '&displayheight=' + hgh + '&image=' + image_path + '&backcolor=0xFFFFFF">';
	txt += '</embed>';

if(!kuda)
	document.write( txt );
else
	document.getElementById(kuda).innerHTML=txt;
return 1;//	return txt;
}*/

//FLASH PROBLEM
var bo_ns_id = 0;

function startIeFix()
{
	if(false)//isIE())
	{
		document.write('<noscript id="bo_ns_id_' + bo_ns_id + '">');
	}
}

function endIeFix()
{
	if(false)//isIE())
	{
		var theObject = document.getElementById("bo_ns_id_" + bo_ns_id++);
		var theNoScript = theObject.innerHTML;
		document.write(theNoScript);
	}
}

function useIeFix( dn, result )
{
//	var theObj = document.getElementById( dn ); "video_content" dn
/*alert(dn+" "+result);
    var obj = document.getElementById( dn )
    alert(obj);
    var msg = "";
    for (var i in obj) {
        msg += i + "=" + obj[i] + "\n";
    }
    alert(msg);*/

	document.getElementById( dn ).innerHTML = result;
}

function isIE()
{	alert('bur');
	var strBrowser = navigator.userAgent.toLowerCase();
	if(strBrowser.indexOf("msie") > -1 && strBrowser.indexOf("mac") < 0)
	{
		return true;
	}else{
		return false;
	}
}
//FLASH PROBLEM
