<SCRIPT>
br='<BR>';
document.write('document.bgColor='+document.bgColor+br);
document.write('document.fgColor='+document.fgColor+br);
document.write('document.linkColor='+document.linkColor+br);
document.write('document.vlinkColor='+document.vlinkColor+br);
document.write('document.alinkColor='+document.alinkColor+br+br);

document.write("document.title.fontsize(4).fontcolor('blue')="+br);
document.write(document.title.fontsize(4).fontcolor('blue')+br);
</SCRIPT>
<TABLE>
<SCRIPT>
br='<BR>';
str='';
for (gg=0;gg<256;gg+=16){ // ³ì»öÀ» 0¿¡¼­ 255±îÁö 16¾¿ Áõ°¡ÇÏ´Â ·çÇÁ ½ÃÀå
  str+='<TR>'; // Å×À̺í ÁÙÀ» ½ÃÀÛÇÑ´Ù.
  ggs=gg.toString(16).toUpperCase(); if (gg==0) ggs='0'+ggs; // ³ì»öÀ» 16Áø¼ö·Î ȯ»êÇÑ´Ù.
  for (rr=0,bb=0;rr<256;rr+=16,bb+=16){ // Àû»ö°ú û»öÀ» µ¿½Ã°Ô 16¾¿ Áõ°¡½ÃÅ°´Â ·çÇÁ ½ÃÀÛ
    rrs=rr.toString(16).toUpperCase(); if (rr==0) rrs='0'+rrs; // Àû»öÀ» 16Áø¼ö·Î ȯ»êÇÑ´Ù.
    bbs=bb.toString(16).toUpperCase(); if (bb==0) bbs='0'+bbs; // û»öÀ» 16Áø¼ö·Î ȯ»êÇÑ´Ù.
    rrggbb=rrs+ggs+bbs; // Àû»ö, ³ì»ö, û»öÀÇ °¢°¢ 16Áø¼ö¸¦ °áÇÕÇÑ´Ù.
    str+='<TD>'+rrggbb.fontcolor(rrggbb).fixed()+'</TD>'; // °¢ Å×À̺í Ä­¿¡ »ö»óÀ» Àû¿ëÇÑ »ö»ó ¹®ÀÚ¿­À» ³Ö´Â´Ù.
  } // ³»ºÎ ·çÇÁ(Àû»ö, û»ö) Á¾·áÇÑ´Ù.
  str+='</TR>'; // Å×À̺íÀÇ ÇÑ ÁÙÀ» Á¾·áÇÑ´Ù.
} // ¿ÜºÎ ·çÇÁ(³ì»ö) Á¾·áÇÑ´Ù.
document.write(str); // °á°ú ¹®ÀÚ¿­ Ãâ·Â
</SCRIPT>
</TABLE>