
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
/************************************************************************
Script made by Martial Boissonneault © 2001 http://getElementById.com/
This script may be used and changed freely as long as this msg is intact
Visit http://getElementById.com/ for more free scripts and tutorials.
*************************************************************************/
var ie5=(document.getElementById && document.all);
var ns6=(document.getElementById && !document.all);

nPlus = 10;   //the % of fading for each step
speed = 50 ; //the speed

// You don't have to edit below this line
nOpac = 100
var opacity = 0;
function FadeImg2(objID, clear)
{
    var obj = document.getElementById(objID);
    //var img2 = document.getElementById('img2');
    opacity += nPlus;
    
    obj.style.visibility="visible";
    obj.style.filter="alpha(opacity=" + ((clear)?(70 - opacity):opacity) + ")";
    
            
    if(opacity < 70)
    {
        setTimeout('FadeImg2(\'' + objID + '\',' + clear + ')',speed);
    }
    else
    {
        if(clear)
            obj.style.visibility="hidden";
        opacity = 0;    
    }
}




