//
// Copyright (c) 2004, Ed de Heus, excITed Software Inc.
// 23 Okt 2004
//

 function tableRowCMS_Over( srcEle ) {
   srcEle.style.backgroundColor = "#C4DEFF";
   srcEle.style.cursor          = 'hand';
 }

 function tableRowCMS_Down( srcEle ) {
   srcEle.style.backgroundColor = "#C4DEFF";
 }

 function tableRowCMS_Out( srcEle ) {
     srcEle.style.backgroundColor = "";
 }



// ---- end of file. ----

