function mOvrTop(src,clrin)
{ if (!src.contains(event.fromElement)) {
src.style.cursor = 'hand';
src.bgColor = clrin;
}
}

function mOutTop(src,clrout)
{ if (!src.contains(event.toElement)) {
src.bgColor = clrout;
}
}

function showon(id)
{
document.all[id].style.color = '#ffffff';

}

function showoff(id)
{
document.all[id].style.color = '#000000';
}