<!--
// lastmodified-ddmmmyy.js Richard Cannon
// Functionality:
//             Returns the file's last modified date from the server in format ddmmmyy or dmmmyy
// Change history:
//		27Jun08 Created by modifying lastmodified.js from Paul Nicholson 
// Instantiation:
//             to use this script, place this command line in the html where the date is required:
//             <script type="text/javascript" src="js/lastmodified-ddmmmyy.js"></script>

var filesdate = document.lastModified
var d = new Date(filesdate)
var m = d.getMonth() + 1;
var mmm =
( 1==m)?'Jan':( 2==m)?'Feb':(3==m)?'Mar':
( 4==m)?'Apr':( 5==m)?'May':(6==m)?'Jun':
( 7==m)?'Jul':( 8==m)?'Aug':(9==m)?'Sep':
(10==m)?'Oct':(11==m)?'Nov':'Dec';
var yy = d.getFullYear() % 100;
var yy = yy<10?"0"+yy:yy;

document.write(d.getDate() + mmm + yy +  " ")
-->

