/*
*/

/* gracias google :) */
function _gel(a){return document.getElementById?document.getElementById(a):null}

function fadeIn(id, op)
{
    var e=_gel(id);

    if (e==null)
    {
        return false;
    }

    if (op <= 100)
    {
        e.style.opacity=(op/100);
	e.style.filter="alpha(opacity="+op+")";
	e.style.KHTMLOpacity=(op/100);

        op=parseInt(op)+10;

	setTimeout("fadeIn('"+id+"', '"+op+"')", 120);
    }
}
