<!-- Code after this will be ignored by older browsers

// Assign the last modified date to the variable lastmoddate
var lastmoddate = document.lastModified;

// Create an if statement to test the value of lastmoddate
if (lastmoddate == 0)
{
   document.writeln("Last Modified:  Unknown");
}
else
{
   document.writeln("Last Modified:  " + lastmoddate);
}
// Stop hiding the code here -->