<script language="JavaScript">
<!--
function documentInfo()
{
var info;
info = "Title : " + document.title +"\n" +
"Last updated : " + document.lastModified + "\n" +
"URL : " + unescape(document.URL);
if (document.referrer != "") {
info += "Referrer : " + unescape(document.referrer) + "\n";
}
window.alert(info);
}
document.write('<FORM>');
document.write('<INPUT TYPE="button" VALUE="ページ情報" onClick="documentInfo()"><BR>');
document.write('</FORM>');
//-->
</script>