function JSFX_FloatBottomLeft()
{
	var startX = 30, startY = 50;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	function ml(id)
	{
		var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
		el.x = startX; 
		el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		el.y -= startY;
		return el;
	}
	window.stayBottomLeft=function()
	{
		var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		fblObj.y += (pY - startY - fblObj.y)/8;
		fblObj.sP(fblObj.x, fblObj.y);
		setTimeout("stayBottomLeft()", 40);
	}
	fblObj = ml("divStayBottomLeft");
	stayBottomLeft();
}
function JSFX_FloatBottomRight()
{

	var startX2 = 770, startY2 = 30;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d2 = document;
	function ml2(id)
	{
		var el=d2.getElementById?d2.getElementById(id):d2.all?d2.all[id]:d2.layers[id];
		if(d2.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
		el.x = startX2; 
		el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		el.y -= startY2;
		return el;
	}
	window.stayBottomRight=function()
	{
		var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		fblObj2.y += (pY - startY2 - fblObj2.y)/8;
		fblObj2.sP(fblObj2.x, fblObj2.y);
		setTimeout("stayBottomRight()", 40);
	}
	fblObj2 = ml2("divStayBottomRight");
	stayBottomRight();

}