// This module contains code which is common to all pages
// All code in this and other pages on the cloudglass.com web site
// is copyright Chris Stewart Consultancy 2001. All rights reserved

// Simple function to display text in the status window

function showStatus(text)
{
	window.event.returnValue = true;
	window.status = text;
}

// Display the date and time modified of the web page
function DisplayModified()
{
	window.event.returnValue = true;
	window.status = "Page Last Modified on " + document.lastModified;
}