Jak zrobić link z tej komórki (i tekstu w niej się znajdującego - choć to akurat wiem

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="pl"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta name="author" content="MPC SERVICE" /> <style media="all" type="text/css"> #misio td { background-image: url(file:///D:/web/festo/graphics_std/topcelltop4.jpg); } #misio td:hover, #misio td.iehover { background-image: url(file:///D:/web/festo/graphics_std/pagebg.gif); cursor: pointer; } </style> <script type="text/javascript"> <!-- iehover = function() { var ieh = document.getElementById("misio").getElementsByTagName("td"); for (var i=0; i<ieh.length; i++) { ieh[i].onmouseover=function() { this.className+=" iehover"; } ieh[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" iehover\\b"), ""); } } } if (window.attachEvent) window.attachEvent("onload", iehover); //--> </script> </head> <body> <div id="misio"> <table border="1" cellpadding="2" cellspacing="2" width="150"> <tbody> <tr> </tr> <tr> </tr> </tbody> </table> </div> <br /> </body> </html>