function BROWSER_scroll()
{
	if(document.body['scroll']!="undefined")
		return document.body;
	else if(document.documentElement['scroll']!="undefined")
		return document.documentElement;
}
function FLOTANTE(data)
{
	if(data=="")
		return;
	DvFLO=document.getElementById('FLOTANTE');
	if(DvFLO.style.visibility=="hidden")
	{
		DvFLO.src="flotante_"+data+".php";
		SCROLL=BROWSER_scroll();
		DvFLO.style.top=SCROLL.scrollTop;
//		SCROLL.style.overflow = "hidden";
		DvFLO.backgroundColor="red";
		DvFLO.style.visibility="visible";
		alert(DvFLO.src+DvFLO.style.width);
	}
}
