// JavaScript Document
function copyright_date() {
copyright=new Date();
update=copyright.getFullYear();
document.write("&copy; 2008-"+ update + " West Cornwall Storage, Hayle, Cornwall TR27 5ET");
}

function last_mod_date() {
modDate = new Date(document.lastModified);
   year = modDate.getFullYear();
   month = modDate.getMonth();
   month = month+1;
   add0month = "";
if (month < 10) {
	add0month = 0
	}
   date = modDate.getDate();
   add0date = "";
if (date < 10) {
	add0date = 0
	}
   hours = modDate.getHours();
   add0hours = "";
if (hours < 10) {
	add0hours = 0
	}
   minutes = modDate.getMinutes();
   add0minutes = "";
if (minutes < 10) {
   add0minutes = 0
	}
document.write("Last Updated " + add0date+date +"/" + add0month+month + "/" + year + " " + add0hours+hours+add0minutes+minutes);
}