//This will format the date like this 'month.day.year'.
function date_FormatDate(date)
{
	var d = date.getDate();
	var m = date.getMonth() + 1;
	var y = date.getFullYear();

	return "" + (m<10?"0"+m:m) + "." + (d<10?"0"+d:d) + "." + y;
}


//This will get the last date that the document was modified and display it.
function date_GetLastModifiedDate()
{
	var lmd = document.lastModified;
	var s   = "Unknown";
	var d1;

	if(0 != (d1=Date.parse(lmd)))
	{
		s = "" + date_FormatDate(new Date(d1));
	}

	return s;
}



document.write('<table width=\"740px\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">');
document.write('<tr>');
document.write('<td width=\"740px\" height=\"10px\" class=\"DateDisplayer2\">');
document.write('Last Updated - ' + date_GetLastModifiedDate());
document.write('</td>');
document.write('</tr>');
document.write('</table>');









