﻿function MouseMove(td1, imgObj, imgUrl, hypObj, hypUrl)
{
    document.getElementById(imgObj).src = imgUrl;
    document.getElementById(hypObj).href = hypUrl;
    td1.className = 'SelectedRow';
}

function MouseLeave(td1)
{
    td1.className = 'NormalRow';
}

