//var meat=document.getElementById('hglgt');
//meat.style.left="450px";
//meat.style.width="80px";
//meat.style.background="#DDEFC9";

function turnOn(pos){
//meat.style.visibility="visible";
//var posMofo = 450 + (90 * pos) - 90;
//meat.style.left=posMofo + "px";
}
function turnOff(){
//meat.style.visibility="hidden";
}


function populator(){
//var winX=document.documentElement.clientHeight;
//var winX=document.body.clientHeight;
//alert(document.getElementById('content').clientHeight);
//var laCaja=document.getElementById('papaBox');
//laCaja.style.height=(document.body.clientHeight)-120;

}



function adBox(content,topDown){
divObj = document.createElement("DIV");
root.appendChild(divObj);
divObj.id="adBox";
divObj.style.width="170px";
divObj.style.position="absolute";
divObj.style.top=120 + topDown + "px";
divObj.style.left="15px";
divObj.innerHTML=content;

}
