var last_updated = "Last Updated 06.20.2008";	//update last updated date  inside of double quotes

window.onload = function() {writeLastUpdate();}

function writeLastUpdate()
{
	document.getElementById("lastUpdate").innerHTML = last_updated;
}