function setswf_transparent(name, width, height, id_name)
{
	document.write('<object data="'+name+'" id="'+id_name+'" width="'+width+'" height="'+height+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" type="application/x-shockwave-flash" />');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+name+'" />');
	document.write('<param name="quality" value="best" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="menu" value="false" />');
	document.write('<embed src="'+name+'" width="'+width+'" height="'+height+'" quality="high" wmode="transparent"  menu="false"align="middle" swLiveConnect="true" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer">');
	document.write('</object>');
}

function get_my_object(nev)
{
	if (document.getElementById) 
	{
		obj = document.getElementById(nev); 
	}
	else if (document.all) 
	{
	// IE4 
		obj = document.all[nev];
	}
	return obj;
}
