<!--
var obj;
var objBody;
var HW;
var HB;
var divH;
var divW;
var T;

function notReady()
{
  alert('this page is not ready, blin');
  return false;
}
function getBorder()
{
  return 0;
}

function placeBottom()
{ 

	HW=document.body.clientHeight;
//	alert("HW="+HW);

	obj=document.all['bottomdiv'];
	divH=obj.clientHeight;
	divW=document.body.clientWidth;

	HB=document.body.scrollHeight;
//	alert("HB="+HB);

	if(HB>(HW-16))  //just to make make sure we won't hit a scrollbar
	{
//		T=HB-divH;
  	T=HB;
	}
	else
	{
		T=HW-divH;
	}
	obj.style.top=T; 
	obj.style.width=divW-16;
	obj.style.visibility="visible";
}
//-->
  
