browserName=navigator.appName;
browserVer=parseInt(navigator.appVersion);
  if ((browserName=="Netscape" && browserVer>=3) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))
  version="n3";
  else
    version="n2";
  if (version=="n3")
     {
     b1on= new Image(160,30);
     b1on.src="botones/buttond1.gif";
     b1off= new Image(160,30);
     b1off.src="botones/button1.gif";
     b2on= new Image(160,30);
     b2on.src="botones/buttond2.gif";
     b2off= new Image(160,30);
     b2off.src="botones/button2.gif";
     b3on= new Image(160,30);
     b3on.src="botones/buttond3.gif";
     b3off= new Image(160,30);
     b3off.src="botones/button3.gif";
     c1on= new Image(130,25);
     c1on.src="botones/buttoncd1.gif";
     c1off= new Image(130,25);
     c1off.src="botones/buttonc1.gif";
     c2on= new Image(130,25);
     c2on.src="botones/buttoncd2.gif";
     c2off= new Image(130,25);
     c2off.src="botones/buttonc2.gif";
     c3on= new Image(130,25);
     c3on.src="botones/buttoncd3.gif";
     c3off= new Image(130,25);
     c3off.src="botones/buttonc3.gif";
     c4on= new Image(130,25);
     c4on.src="botones/buttoncd4.gif";
     c4off= new Image(130,25);
     c4off.src="botones/buttonc4.gif";
     c5on= new Image(130,25);
     c5on.src="botones/buttoncd5.gif";
     c5off= new Image(130,25);
     c5off.src="botones/buttonc5.gif";
     c6on= new Image(130,25);
     c6on.src="botones/buttoncd6.gif";
     c6off= new Image(130,25);
     c6off.src="botones/buttonc6.gif";
     c7on= new Image(130,25);
     c7on.src="botones/buttoncd7.gif";
     c7off= new Image(130,25);
     c7off.src="botones/buttonc7.gif";
     c8on= new Image(130,25);
     c8on.src="botones/buttoncd8.gif";
     c8off= new Image(130,25);
     c8off.src="botones/buttonc8.gif";
     c9on= new Image(130,25);
     c9on.src="botones/buttoncd9.gif";
     c9off= new Image(130,25);
     c9off.src="botones/buttonc9.gif";
     c10on= new Image(130,25);
     c10on.src="botones/buttoncd10.gif";
     c10off= new Image(130,25);
     c10off.src="botones/buttonc10.gif";
     c11on= new Image(130,25);
     c11on.src="botones/buttoncd11.gif";
     c11off= new Image(130,25);
     c11off.src="botones/buttonc11.gif";
     c12on= new Image(130,25);
     c12on.src="botones/buttoncd12.gif";
     c12off= new Image(130,25);
     c12off.src="botones/buttonc12.gif";
     c13on= new Image(130,25);
     c13on.src="botones/buttoncd13.gif";
     c13off= new Image(130,25);
     c13off.src="botones/buttonc13.gif";
     c14on= new Image(130,25);
     c14on.src="botones/buttoncd14.gif";
     c14off= new Image(130,25);
     c14off.src="botones/buttonc14.gif";
     }

function encend(imgName)
 {
   if (version=="n3")
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function apagar(imgName)
 {
   if (version=="n3")
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

