You need to add a second parameter to your function, the index of the image to alter:
Code:
onClick=display('images/arrow1.bmp', 0)
function display(pic, index)
{
document.images[index].src=pic;
}
Each group of radio buttons controls its own indexed image, so your original group all have a second parameter of 0, the next block have a second parameter of 1 etc.
--
Joe (
Microsoft MVP - XML)