<!--
var bV=parseInt(navigator.appVersion);
NS4=(document.layers) ? true : false;
IE4=((document.all)&&(bV>=4))?true:false;

   ver4 = (NS4 || IE4) ? 1 : 0;
    function donothing() { return }

if (document.images) {
    arImLoad = new Array (
        "icons/b_hm_over",
        "icons/b_hm_down",
        "icons/b_ls_over",
        "icons/b_ls_down",
        "icons/b_ag_over",
        "icons/b_ag_down",
        "icons/b_rl_over",
        "icons/b_rl_down",
        "icons/b_li_over",
        "icons/b_li_down",
        "icons/b_sr_over",
        "icons/b_sr_down",
        "icons/b_cu_over",
        "icons/b_cu_down",
        "icons/b_au_over",
        "icons/b_au_down",
        "icons/b_fq_over",
        "icons/b_fq_down"
   
   );
   arImList = new Array ();
   for (counter in arImLoad) {
   arImList[counter] = new Image();
   arImList[counter].src = arImLoad[counter] + ".gif";
   }
}
   function rollOver(imName,over) {
if (!document.images) {return};
   whichIm = document.images[imName];
   if (over) { whichIm.src = imName + "over.gif" }
   else { whichIm.src = imName + "up.gif" }
   }
   function rollPress(imName,down) {
   whichIm = document.images[imName];
   if (down) { whichIm.src = imName + "down.gif" }
   else { whichIm.src = imName + "over.gif" }
   }
   function rollClick(imName) {
if (!document.images || ver4) {return};
   whichIm = document.images[imName]
   whichIm.src = imName + "down.gif";
   dummy = setTimeout("whichIm.src=\"" + imName + "over.gif\"",100);
   }

   function navOver(imName,dir,over) {
if (!document.images) {return};
   whichIm = document.images[imName];
if (over) { whichIm.src = "icons/b_" + dir + "_over.gif" }
   else { whichIm.src = "icons/b_" + dir + ".gif" }
   }
   function navPress(imName,dir,press) {
   whichIm = document.images[imName];
   if (press) { whichIm.src = "icons/b_" + dir + "_down.gif" }
   else { whichIm.src = "icons/b_" + dir + ".gif" }
   }
//-->

