// JavaScript Document

var alt="";
function show(id) {
 if(document.getElementById && alt)
   {
   document.getElementById(alt).style.backgroundColor = "";
   document.getElementById(alt).style.borderRight = "5px solid #4A6394";
   document.getElementById(alt).style.borderTop = "1px solid white";
   document.getElementById(alt).style.borderBottom = "1px solid black";
   document.getElementById(alt).style.fontWeight = "";
   }
 if(document.getElementById)
   {
   document.getElementById(id).style.backgroundColor = "#CCCFD3";
   document.getElementById(id).style.borderRight = "5px solid #EF0022";
   document.getElementById(id).style.borderTop = "1px solid black";
   document.getElementById(id).style.borderBottom = "1px solid white";
   document.getElementById(id).style.fontWeight = "bold";
   }
 alt=id;
}
