function runSlideShow(picturesrc, imgnum){

if (document.all){
document.images(imgnum).style.filter="blendTrans(duration=2)";
document.images(imgnum).style.filter="blendTrans(duration=2)";
document.images(imgnum).filters.blendTrans.Apply();
document.images(imgnum).src = picturesrc;}
else if (document.getElementById) {
document.getElementById(imgnum).src = picturesrc;

}
if (document.all) document.images(imgnum).filters.blendTrans.Play();
}

