// JavaScript Document
<!--
 function colorchangeOn(td){
 if(document.getElementById||(document.all && !(document.getElementById))){
 td.style.backgroundColor="#87cefa";
 }
 }
 function colorchangeOut(td){
 if(document.getElementById||(document.all && !(document.getElementById))){
 td.style.backgroundColor="#dcdcdc";
 }
 }
//-->

