if (document.images)
{
toc1on = new Image(71,82);
toc1on.src = "button1_on.jpg";
toc1off= new Image(71,82);
toc1off.src= "button1_off.jpg";
toc2on = new Image(71,82);
toc2on.src = "button2_on.jpgf";
toc2off= new Image(71,82);
toc2off.src= "button2_off.jpg";
}
function img_act(imgName)
{
if (document.images)
{
imgOn = eval(imgName + "on.src");
document[imgName].src = imgOn;
}
}
function img_inact(imgName)
{
if (document.images)
{
imgOff = eval(imgName + "off.src");
document[imgName].src = imgOff;
}
}