function btn_over(which) {
   if (document.all||document.getElementById){
      which.className='btnOver'
   }
}   
function btn_out(which) {
   if (document.all||document.getElementById){
      which.className='btnOut'
   }  
}
