﻿// JScript File
function swapimage(ctl, newImgName) {
   //if (ctl.src.indexOf('_down')==-1)
       ctl.src = newImgName;
}


function suppressImgTag(){
    for (var i = 0; i < document.all.length; i++){
       if(document.all[i].tagName == "IMG")
          { 
              if (document.all[i].src == "http://ifs.marketcenter.com/common/images/ads/real_time_3.gif" ||
                  document.all[i].src == "http://ifs.marketcenter.com/common/images/ads/real_time_3_sm.gif")
              {
                  document.all[i].style.display = "none";
               }
          }

    }
}