var memo = new Array();
function display(Imagname,Imagfile,Seconds)
{
var ImagSep = Imagfile.indexOf(";");
var nextImag = Imagfile.substring(0,ImagSep);
if (document.all)
{
document.getElementById(Imagname).style.filter="blendTrans(duration=2)";
document.getElementById(Imagname).filters.blendTrans.Apply();
}
document.getElementById(Imagname).src = nextImag;
if (document.all)
   {
   document.getElementById(Imagname).filters.blendTrans.Play();
   }
var otherimag= Imagfile.substring(ImagSep+1,Imagfile.length)
+ ';' + nextImag;
setTimeout("display('"+Imagname+"','"+otherimag+"',"+Seconds+")",
Seconds*1000);
ImagSep = otherimag.indexOf(";");
nextImag = otherimag.substring(0,ImagSep);
if (memo[nextImag] == null) {
memo[nextImag] = new Image;
memo[nextImag].src = nextImag;
}
}

