// function connected to calendar
function changecolor(item)
{
document.all(item).style.color="red"
}


function imageSwap(xImage, xSrc)
{
  var objStr,obj;
  if(document.images){
    // Verify whether you are using a name, number, or object
    if (typeof(xImage) == 'string') {
      // Verify IE3 compatibility for the Mac.
      objStr = 'document.' + xImage;
      obj = eval(objStr);
      obj.src = xSrc;
    } else if ((typeof(xImage) == 'object') && xImage && xImage.src) {
      xImage.src = xSrc;
    }
  }
}

