function LastUpdate()
{
	LastUpdate	= new Date(document.lastModified);

	LastYear	= LastUpdate.getYear()-2000;
	LastMonth	= LastUpdate.getMonth()+1;
	LastDate	= LastUpdate.getDate();
	LastHours	= LastUpdate.getHours();
	LastMinutes	= LastUpdate.getMinutes();
	LastSeconds	= LastUpdate.getSeconds();

	if (LastMonth	< 10)	{ Y2M = "0";   } else { Y2M = "";   }
	if (LastDate	< 10)	{ M2D = "/0";  } else { M2D = "/";  }
	if (LastHours	< 10)	{ D2H = "@0"; } else { D2H = "@"; }
	if (LastMinutes	< 10)	{ H2M = ":0";  } else { H2M = ":";  }
	if (LastSeconds	< 10)	{ M2S = ":0";  } else { M2S = ":";  }

	document.write('0' + LastYear + '/' + Y2M + LastMonth + M2D + LastDate + D2H + LastHours + H2M + LastMinutes + M2S + LastSeconds);
}

