달력

42024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

<HTML>
<HEAD>
<Script language="javascript">
<!--
 
 function show(){
  document.all["layer_1"].style.display="block";
 }

 function close() {

  document.all["layer_1"].style.display = "none";
 }


//-->

</Script>
</HEAD>

<BODY>

<table border="1" align="LEFT" cellpadding=0 cellspacing=0 width=400>

 <tr>
  <td>
    <a href="javascript:show()" >보이기</a>
    <a href="javascript:close()" >닫기</a>
  </td>
 </tr>

 <tr id="layer_1" style="display:none">
   <td width="100%" height="200">
  보여요????
  
   </td>
 </tr>
</table>

</BODY>
</HTML>

Posted by tornado
|