﻿function mOvr3(src,clrOver)
{
    if (!src.contains(event.fromElement)) 
    { 
        src.style.cursor = 'pointer'; 
        src.bgColor = clrOver; 
        if(!src.children.tags('a'))
        {
            src.children.tags('a')[0].style.color = '#FF0000'; 
        }
    }
}

function mOut3(src,clrIn) 
{ 
    if (!src.contains(event.toElement)) 
    { 
        src.style.cursor = 'default'; 
        src.bgColor = clrIn; 
        if(!src.children.tags('a'))
        { 
            src.children.tags('a')[0].style.color = '#0072bc';
        }
    }
}

function mClk3(src) 
{ 
    if(event.srcElement.tagName=='TD')
    {
        src.children.tags('a')[0].click();
    }
}

var ColorCode = new Array("#EEEEEE", "e0f1ee", "d6efff", "646560", "ffffcc", "66ccff", "99ffcc", "c0c0c0", "669999", "999966");

function ParaOver(me) {
    me.style.backgroundColor = ColorCode[0];
}

function ParaOut(me) {
    me.style.backgroundColor = "transparent";
}
