Currently, I'm able to make a table cell "linkable" based on the href attribute in an <a> tag (the way Hotmail used to). IE uses the scripting...
function mClk(src)
{
if(event.srcElement.tagName == 'TD')
{
src.children.tags('a')[0].click();
}
}
...and naturally, this...