HEAD>
Function FNGETTABLE (OEL)
{
Try {
While (null! = OEL && OEL.TAGNAME! = "Table")
{
OEL = OEL.PARENTELEMENT;
}
Return OEL;
}
Catch (e)
{
Return NULL;
}
}
Function POS ()
{
Try {
Olement = Document.ementFromPoint (event.x, event.y);
Olement = fngetTable (Olement);
IF (Olement.tagname == "Table")
Show.innertext = Olement.id;
}
Catch (e)
{}
}
// ->
script>