bVer =parseInt(navigator.appVersion);
bName=navigator.appName;
if (bVer >=3 && bName=="Netscape") gSupport=1;
else if (bVer >=4) gSupport=1;
else gSupport=0;
if (gSupport==1)
{

  	img1 = new Image();
        img1.src = "img/past00.es.gif";
        img1a = new Image();
        img1a.src = "img/past00_act.es.gif";
	img2 = new Image();
        img2.src = "img/past01.ct.gif";
        img2a = new Image();
        img2a.src = "img/past01_act.ct.gif";
	img3 = new Image();
        img3.src = "img/past02.ct.gif";
        img3a = new Image();
        img3a.src = "img/past02_act.ct.gif";
}

function rollover(iName)
                {
                if (gSupport==1)
                         {
                                 thename = eval(iName + "a.src");
                                 document[iName].src = thename;
                }
        }
function rolloff(iName)
                {
        if (gSupport==1)
                {
                thename = eval(iName + ".src");
                document[iName].src = thename;
                }
        }