function alignBottom (ObjToMove, RefObj)
{
/* Moves one object in relation to another. Only tested with DIVs
 * but one assumes the concept should work with others. */
var theobj
eval('theobj = document.all.' + RefObj)
rp=document.getElementById? document.getElementById(RefObj) : theobj;
eval('theobj = document.all.' + ObjToMove)
hcc=document.getElementById? document.getElementById(ObjToMove) : theobj;
hcc.style.marginTop=0;
rptop=rp.offsetTop;
rpheight=rp.offsetHeight;
hccheight=hcc.offsetHeight;
newtop=(rptop+rpheight-hccheight+15);
hcc.style.top=newtop;
}


