//Función que escribe una consola en tiempo real
function writeConsole(content,w,h,s,r) {
 var consoleRef;
 consoleRef=window.open('','consola','width='+w+',height='+h+',menubar=0,toolbar=0,status=0,scrollbars='+s+',resizable='+r);
 consoleRef.document.write('<html><head><title>Su Casita</title><style type="text/css" media="all">@import "css/SuCasita-es-MX.css";</style></head><body bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0" onLoad="self.focus()"><div id="Cuerpo">' + content + '</div></body></html>');
}

function SeeMore(id) {

document.getElementById('href'+id).innerHTML="-";
document.getElementById('href'+id).href="javascript:HideAll(" + id + ")";
document.getElementById('tr'+id).style.display="block";

}

function HideAll(id) {

document.getElementById('href'+id).innerHTML="+";
document.getElementById('href'+id).href="javascript:SeeMore(" + id + ")";
document.getElementById('tr'+id).style.display="none";

}


function showEvents(id) {

document.getElementById('span'+id).style.display="block";
document.getElementById('div'+id).style.display="block";
document.getElementById('div'+id).style.background="url('img/img_backEvento.gif') no-repeat bottom left";
document.getElementById('span'+id).style.background="url('img/img_backEvento.gif') no-repeat bottom left";
document.getElementById('span'+id).style.padding="10px";

}

function hideEvents(id) {

document.getElementById('div'+id).style.display="none";
document.getElementById('span'+id).style.background="";
document.getElementById('span'+id).style.padding="0px";

}
