
<!-- Hide

var agw_timeouts = new Array();
function agw_fade(x, rv_opc) {
    document.getElementById(x).style.opacity = rv_opc / 100;
    document.getElementById(x).style.filter = "alpha(opacity=" + rv_opc + ")";
}
function agawebs_fade_out(obj_id, step, pi, pf, flow) {
    if (agw_timeouts[obj_id] == null) agw_timeouts[obj_id] = new Array();
    else for (i in agw_timeouts[obj_id]) clearTimeout(agw_timeouts[obj_id][i]);
    if (!step) step = 5;
    if (!pi) pi = 100;
    if (!pf) pf = 0;
    var agw_time = 0;
    var index = 0;
    for (i = pi; i >= pf; i -= step) {
        agw_timeouts[obj_id][index] = setTimeout("agw_fade ('" + obj_id + "', " + i + ")", agw_time);
        agw_time += 20;
        index++;
    }
    if (flow == 1) setTimeout("document.getElementById('" + obj_id + "').style.display = 'none'", (agw_time + 20));
}
function agawebs_fade_in(obj_id, step, pi, pf, flow) {
    if (agw_timeouts[obj_id] == null) agw_timeouts[obj_id] = new Array();
    else for (i in agw_timeouts[obj_id]) clearTimeout(agw_timeouts[obj_id][i]);
    var agw_time = 0;
    if (flow == 1) {
        document.getElementById(obj_id).style.display = 'inline';
        agw_time += 20;
    }
    if (!step) step = 5;
    if (!pi) pi = 0;
    if (!pf) pf = 100;
    var index = 0;
    for (i = pi; i <= pf; i += step) {
        agw_timeouts[obj_id][index] = setTimeout("agw_fade ('" + obj_id + "', " + i + ")", agw_time);
        agw_time += 20;
        index++;
    }
}
// show -->

