// JavaScript Document
function toggleColor(objElement) {
   if (objElement.className=='frm')
      objElement.className='frm-on';
   else
      objElement.className='frm';
}

function toggleColor1(objElement) {
   if (objElement.className=='frm1')
      objElement.className='frm1-on';
   else
      objElement.className='frm1';
}