function goToPage(page){
	document.location=page;
}

function updateLastModified(){
	var lastModValue=document.lastModified.split(' ');

//-------------- date only --------------------
//	top.frames[0].document.forms[0].lastUpdated.value=lastModValue[0];

//------------- date with 24hr time ------
//
//	top.frames[0].document.forms[0].lastUpdated.value=lastModValue[0]+" "+lastModValue[1];

//------------ date with 12hr time ------

	var timeComponents=lastModValue[1].split(':');
	var bin="AM";

	if(Number(timeComponents[0])>=13){
		timeComponents[0]-=12;
		bin="PM";
	}

	top.frames[1].document.forms[0].lastUpdated.value=lastModValue[0]+" "+timeComponents[0]+":"+timeComponents[1]+" "+bin;
}
