function changeImage(fileName, imageName){
na="Cmp000CDC2909"+imageName;
document.images[na].src = fileName;
}

isIE4 = (navigator.appVersion.charAt(0)>=4 && (navigator.appVersion).indexOf("MSIE") != -1)
isNN4 = (navigator.appVersion.charAt(0)>=4 && (navigator.appName).indexOf("Netscape")!=-1);

function link_info(m) {
  if(m==null)  m = "";

  if(isIE4) {
    el = document.all("LINKMSG1");
    el.innerHTML = m;
   }
  else if(isNN4) {
    lay = document.layers["PARENT_LINKMSG"].document.layers["LINKMSG1"];
    lay.document.open();
    lay.document.write("<span class='text4'>"+m+"</span>");
    lay.document.close(); 
   }
}