묻고답하기

나모웹 에디터로 표 그려서 노프레임 홈페이지 만들고 있었는데요..
표 안에 뭐 소스 넣을게 있어서 HTML편집창(F6) 으로 가서 소스 넣고 다시 기본 편집창으로 돌아오니
분명히 그려져 있었던 표는 없어지고
작게
[<table>]
이라는 아이콘만 생겼네요..ㅠㅠ
이 아이콘을 어떻게 다시 표로 되돌리나요?? 다시 하긴 좀 그렇구..

미리보기 하면 제가 원했던대로 똑바로 나오는데 편집창으로 돌아가면 [<table>] <<요런 작은 아이콘 밖에 없네요..


도둠이 될까봐 소스 첨부함니다..

<html>

<head>
<script language=javascript>
function imgTrans(id,after) {
eval(id+'.filters.blendTrans.stop();');
eval(id+'.filters.blendTrans.Apply();');
eval(id+'.src="'+after+'";');
eval(id+'.filters.blendTrans.Play();');
}
</script>

</head>

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<table align="center" cellpadding="0" cellspacing="0" width="800">
    <tr>
        <td width="198" height="100">
            <p style="line-height:100%; margin-top:0; margin-bottom:0;"><img src="http://jsc890.ivyro.net/images/logo.jpg" width="198" height="99" border="0"></p>
        </td>
        <td width="117" height="100">
            
<a href="Yet" onMouseOver="imgTrans('image01','http://jsc890.ivyro.net/images/button/main2.jpg'+ '+ ')"
onMouseOut="imgTrans('image01','http://jsc890.ivyro.net/images/button/main.jpg')"><img id=image01 src="http://jsc890.ivyro.net/images/button/main.jpg" border="0"
style="filter:blendTrans(duration=0.2)"></a>
        </td>
        <td width="117" height="100">
            <a href="Yet" onMouseOver="imgTrans('image02','http://jsc890.ivyro.net/images/button/make2.jpg')"
onMouseOut="imgTrans('image02','http://jsc890.ivyro.net/images/button/make.jpg')"><img id=image02 src="http://jsc890.ivyro.net/images/button/make.jpg" border="0"
style="filter:blendTrans(duration=0.2)"></a>
        </td>
        </td>
        <td width="117" height="100">
            <a href="Yet" onMouseOver="imgTrans('image03','http://jsc890.ivyro.net/images/button/comu2.jpg')"
onMouseOut="imgTrans('image03','http://jsc890.ivyro.net/images/button/comu.jpg')"><img id=image03 src="http://jsc890.ivyro.net/images/button/comu.jpg" border="0"
style="filter:blendTrans(duration=0.2)"></a>
        </td>
        </td>
        <td width="117" height="100">
            <a href="Yet" onMouseOver="imgTrans('image04','http://jsc890.ivyro.net/images/button/link2.jpg')"
onMouseOut="imgTrans('image04','http://jsc890.ivyro.net/images/button/link.jpg')"><img id=image04 src="http://jsc890.ivyro.net/images/button/link.jpg" border="0"
style="filter:blendTrans(duration=0.2)"></a>
        </td>
        </td>
        <td width="134" height="100">
            <p style="line-height:100%; margin-top:0; margin-bottom:0;"><img src="http://jsc890.ivyro.net/images/button/sitemap.jpg" width="60" height="39" border="0"><img src="http://jsc890.ivyro.net/images/button/blank.jpg" width="13" height="39" border="0"><img src="http://jsc890.ivyro.net/images/button/email.jpg" width="47" height="39" border="0"></p>
           <a href="Yet" onMouseOver="imgTrans('image05','http://jsc890.ivyro.net/images/button/guest2.jpg')"
onMouseOut="imgTrans('image05','http://jsc890.ivyro.net/images/button/guest.jpg')"><img id=image05 src="http://jsc890.ivyro.net/images/button/guest.jpg" border="0"
style="filter:blendTrans(duration=0.2)"></a>
        </td>
        </td>
    </tr>
    <tr>
        <td width="800" colspan="6">
            <p> </p>
        </td>
    </tr>
    <tr>
        <td width="800" colspan="6">
            <p> </p>
        </td>
    </tr>
    <tr>
        <td width="800" colspan="6">
            <p> </p>
        </td>
    </tr>
</table>
</body>

</html>