
function showObject(objID)  // Mostrar Tabla         http://www.multimundos.cl
{
	var obj = getObject(objID);
	var rtn = false;
	if (obj != null) {
     	obj.style.display = "inline";
        obj.style.position = "static";
        obj.style.width = "auto";
        obj.style.height = "auto";
        obj.style.overflow = "visible";
		rtn = true;
	}
	return rtn;
}
function hideObject(objID)  // Ocultar Tabla   http://www.multimundos.cl
{
	var obj = getObject(objID);
	var rtn = false;
	if (obj != null) {
     	obj.style.display = "none";
        obj.style.position = "static";
        obj.style.width = "auto";
        obj.style.height = "0";
		rtn = true;
	}
	return rtn;
}
function getObject(objID)  // funcion para ocultar y mostar Trabla    http://www.multimundos.cl
{
   if (document.all)
   {
      var obj = document.all[objID];
   }
   else if (document.getElementById)
   {
      var obj = document.getElementById(objID);
   }
	return obj;
}

