function displayLocalTime(LP) {
	var theDate = new Date(LP * 1000); 
	document.write(theDate.toLocaleString() + ' (Your Local Time)'); 
}
