JavaScript の質問用スレッド

このエントリーをはてなブックマークに追加
804
文章の上をマウスでさわると、説明が出てくるようにしたのですが
クリックしてリンクする、という方法がわかりません。分かる方、
教えて下さいお願いします。
<SCRIPT type="text/javascript">
&lt;!--
function display_text(message){
if(document.all){
info.innerHTML = message;
}
else if(document.layers){
document.info.docment.open();
document.info.document.write(message);
document.info.document.close();
}
}
//--&gt;
</SCRIPT>
<BODY>
<TABLE>
<TR>
<TD width="120"><A HREF="#"
onMouseover="display_text('解説がわかりやすいよ。')">紹介</A></TD>
<TD rowspan="4" width="300" valign="top">
<DIV id="info" style="position:
absolute;left:200px;top:20px"></DIV>
</TD>
</TR>
<TR><TD width="120"><A HREF="#"
onMouseover="display_text('ナイショだよ。')">コンセプト</A></TR>
</TABLE>
</BODY>
どこをさわればいいですか?