function over1(obj){
 var bgColor = obj.getAttribute("bgColor");
 bgColor = bgColor.toLowerCase();
 if(bgColor == "#ffffff"){
   obj.style.backgroundColor = "red";
   obj.lastChild.firstChild.style.color = "#FFFFFF";
 }else{
  return;
 }
}
function out1(obj){
 var bgColor = obj.getAttribute("bgColor");
 bgColor = bgColor.toLowerCase();
 if(bgColor == "#ff0000"){
   obj.setAttribute("bgColor","red");
   obj.lastChild.firstChild.style.color = "#FFFFFF";
 }else{
   obj.style.backgroundColor = "#FFFFFF";
   obj.lastChild.firstChild.style.color = "";
 }
}
function goTo(hr){
 location.href = hr;
 return;
}
