<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1">
<title>Some JavaScript Examples</title>
<link rel="stylesheet" href="../../default.css" type="text/css">
</head>

<body>

<h1>Document Features</h1>

<p>This document was modified on
<script type="text/JavaScript">
<!--
document.write(document.lastModified);
//-->
</script>
</p>

<p>This document is located at
<script type="text/JavaScript">
<!--
document.write(document.URL);
//-->
</script>
</p>

<p>The top frame document is located at
<script type="text/JavaScript">
<!--
document.write(top.document.URL);
//-->
</script>
</p>

<p>
<script type="text/JavaScript">
<!--
if (top.document.URL==document.URL)
    document.write("An observation: You are not inside of any frame.");
else 
    document.write("An observation: You are inside of a frame.");
//-->
</script>
</p>

<p>You came here from
<script type="text/JavaScript">
<!--
document.write(document.referrer);
//-->
</script>
</p>

<p>
<script type="text/JavaScript">
<!--
document.write("<span style=\"font-style: italic; font-size: smaller;\">Updated on "+document.lastModified+".</span>\n");
//-->
</script>
</p>

</body>

</html>