//Written by Uppercase Development Inc, 2004
function doTrailer(first){
	var element = document.getElementById("trailer");
	if(typeof trailerHeight!="number")trailerHeight=parseInt('0'+element.style.height);
	if(first===1)document.write('<div style="position:absolute;bottom:0;height:9px;font-size:1px" id="winHeight"></div>');
	var bot=document.getElementById("winHeight").offsetTop-trailerHeight-otherDivAdj;
	var botb=element.offsetTop+0;
	if(bot>botb) element.style.top=(bot)+"px";
	setTimeout("doTrailer(0)", 500);
}
doTrailer(1);