//Cifco Shanghai,All rights reserved.
function over(src,clrOver,clrOver1) {
 if (!src.contains(event.fromElement))
 {
src.style.cursor = 'hand'; src.bgColor = clrOver;
 src.style.color = clrOver1;
}
}
function out(src,clrIn,clrIn1) {
 if (!src.contains(event.toElement))
{src.style.cursor = 'default'; src.bgColor = clrIn; 
 src.style.color = clrIn1;
 }
}
function clk(src) {
 if(event.srcElement.tagName=='TD')
 {
 src.children.tags('A')[0].click();
 }
}