   BrowserName = navigator.appName;
   BrowserVer  = parseInt(navigator.appVersion);
   version = "bad";

   if((BrowserName == "Netscape" && BrowserVer >= 3) ||
      (BrowserName == "Microsoft Internet Explorer" && BrowserVer >= 3))
        version = "good";
   name="";
   var flag = new Array(10);
   for(i=0; i<10; i++) flag[i]=0;

   if(version == "good")
   {
     b1on = new Image(236,56);
     b1on.src = "/assets/templates/old/images/b1_1.gif";
     b2on = new Image(260,56);
     b2on.src = "/assets/templates/old/images/b2_1.gif";
     b3on = new Image(90,142);
     b3on.src = "/assets/templates/old/images/b3_1.gif";
     b4on = new Image(90,142);
     b4on.src = "/assets/templates/old/images/b4_1.gif";
     b5on = new Image(90,142);
     b5on.src = "/assets/templates/old/images/b5_1.gif";
     b6on = new Image(90,142);
     b6on.src = "/assets/templates/old/images/b6_1.gif";
     b7on = new Image(90,142);
     b7on.src = "/assets/templates/old/images/b7_1.gif";
     b8on = new Image(90,142);
     b8on.src = "/assets/templates/old/images/b8_1.gif";
     b9on = new Image(90,142);
     b9on.src = "/assets/templates/old/images/b9_1.gif";

     b1off = new Image(236,56);
     b1off.src = "/assets/templates/old/images/b1.gif";
     b2off = new Image(260,56);
     b2off.src = "/assets/templates/old/images/b2.gif";
     b3off = new Image(90,142);
     b3off.src = "/assets/templates/old/images/b3.gif";
     b4off = new Image(90,142);
     b4off.src = "/assets/templates/old/images/b4.gif";
     b5off = new Image(90,142);
     b5off.src = "/assets/templates/old/images/b5.gif";
     b6off = new Image(90,142);
     b6off.src = "/assets/templates/old/images/b6.gif";
     b7off = new Image(90,142);
     b7off.src = "/assets/templates/old/images/b7.gif";
     b8off = new Image(90,142);
     b8off.src = "/assets/templates/old/images/b8.gif";
     b9off = new Image(90,142);
     b9off.src = "/assets/templates/old/images/b9.gif";

   }
   function img_act(imgName) 
   {
       flag[imgName]=1;
       if(version=="good")
       {
         imgOn = eval(imgName + "on.src");
         document [imgName].src = imgOn;
       }
   }
   function img_inact(imgName) 
   {
       flag[imgName]=0;
       if(version=="good")
       {
         imgOff = eval(imgName + "off.src");
         document [imgName].src = imgOff;
       }
   }
   function img_click(imgName) 
   {
         if(version=="good")
         {
           imgOff = eval(imgName + "off.src");
           document [imgName].src = imgOff;
           name=imgName;
           setTimeout('wait()', 90)
       }
   }
   function wait()
   {
       if(flag[name]==1)
       {
         imgOn = eval(name + "on.src");
         document [name].src = imgOn;
       }
   }
