// File: cal3Scripts.js

function showDate() {
	var now =   new Date();
	var month = now.getMonth() + 1;
	var day =   now.getDate();
	var year =  now.getFullYear();
	var hour =  now.getHours();
	var min =   now.getMinutes();
	var sec =   now.getSeconds();
	var ampm = "AM";
	if (hour > 12) {hour -= 12; ampm = "PM"}
	else {ampm = "AM"};
	var dateString = month + "/" + day + "/" + year + " ";
	dateString += hour + ":" + min + ":" + sec + " " + ampm;
	var curDate = document.getElementById("dateBox");
	curDate.value = dateString;
	setTimeout("showDate()", 1000);
}
function setShowCurrMode() {
	var currBtn = document.getElementById("showCurr");
	currBtn.style.backgroundColor = "#ffff00";
}
function setShowSelMode() {
	var selBtn = document.getElementById("showSel");
	currBtn.style.backgroundColor = "#99ff99";
}
function setShowAllMode() {
	var allBtn = document.getElementById("showAll");
	currBtn.style.backgroundColor = "#99ff99";
}