//function doit(imgObj)
//{
//  var cell = imgObj.id;  // save value of clicked image
//  document.getElementById("budget").value = cell;
// 
//// loop through the images, find the ones that have the clicked image name
//  for (var i = 0 ; i < document.images.length; i++)
//     if (document.images[i].name == imgObj.name)
//    {
//   // if value equals cell value turn it on; else turn it off
//
//  document.images[i].src = (document.images[i].id == cell)  ?  'images/budget_on.gif'
//: 'images/budget_off.gif'
//   }
//}



function doit(imgObj)
{
  var cell = imgObj.id;  // save value of clicked image
  document.getElementById("budget").value = cell;
 
// loop through the images, find the ones that have the clicked image name
  for (var i = 0 ; i < document.images.length; i++)
     if (document.images[i].name == imgObj.name)
    {
      // if value equals cell value turn it on; else turn it off
      if (document.images[i].id == cell)
      {
          document.images[i].src = 'images/budget_on.gif';
          document.getElementById('txtSelected').value = document.images[i].value;
      }
      else
      {
          document.images[i].src = 'images/budget_off.gif';
      }
   }
}

