
// Table Border
function td_over(id){
  if (document.layers || document.getElementById) {
    var st=document.getElementById(id);
		st.style.borderColor= "0059a5";
  }
}
 function td_out(id){
  if (document.layers || document.getElementById) {
    var st=document.getElementById(id);
    st.style.borderColor= "ffffff";
   }
}
