<FORM name="fname">
<SCRIPT>
var numb=history.length;
document.write('history.length=[<FONT color=blue>'+numb+'</FONT>]  ¹æ¹® ³»¿ë¿¡ µû¶ó °è¼Ó ´Þ¶óÁü<BR>');
str='';
for (i=-numb; i<=0; i++){
  if (i==0) str+='<INPUT type="button" value="Çö  Àç 0"'
  else str+='<INPUT type="button" value="ÀÌÀü '+((i>-10)?'  ':'');
  str+=i+' ¹ø °·Î" onclick="history.go('+i+')">'+
  ' <A href="javascript:history.go('+i+')">javascript:history.go('+i+')</A><BR>';
}
document.write(str);
document.write('<BR><INPUT type="button" value="¹Ù·ÎÀÌÀü"'+
  ' onclick="history.back()"> <A href="javascript:history.back()">'+
  'javascript:history.back()</A><BR>');
document.write('<INPUT type="button" value="¹Ù·Î´ÙÀ½"'+
  ' onclick="history.forward()"> <A href="javascript:history.forward()">'+
  'javascript:history.forward()</A><BR>');
</SCRIPT>
</FORM>