Document properties  


When was this page modified?


<script>
<!--
var whenwasit ;
whenwasit=document.lastModified ;
document.write("last updated: ", whenwasit) ;
//-->
</script>


Who's calling me?


<script>
<!--
var whoisit ;
whoisit=document.referrer ;
document.write("called by: "+whoisit) ;
//-->
</script>


What's my title?


<script>
<!--
var whatami ;
whatami=document.title ;
document.write("the title of this page is: "+whatami) ;
//-->
</script>


What's my URL?


<script>
<!--
var whereami ;
whereami=document.URL ;
document.write("the URL of this page is: ", whereami) ;
//-->
</script>


All together now!

<script>
<!--
var whenwasit=document.lastModified ;
var whoisit=document.referrer ;
var whatami=document.title ;
var whereami=document.URL ;
document.write("Welcome to <b>", whatami, "</b> at <i>", whereami, "</i>") ;
document.write("<br>") ;
document.write("from <i>", whoisit, "</i>") ;
document.write("<br>") ;
document.write("last modified: ", whenwasit) ;
//-->
</script>


If the dates are peculiar, you may be using Netscape 4, as I am.