// JavaScript Document

function toggleColor(objElement) {
  if (objElement.className=='focus') {
    objElement.className='normal';
  } else {
    objElement.className='focus';
  }
}
