function toggle_pulldown() {

	var list = document.getElementById("archive_list");
	
	if (list.style.display == "none" || list.style.display == "") list.style.display = "inline";
	else list.style.display = "none";
}

function chng_date_form(date) {
	var dsplit = date.split(" ");
	var thedate = dsplit[0].split("/");

	switch (thedate[1]){
		case "01":
			month = "January";
			break;
		case "02":
			month = "Feburary";
			break;
		case "03":
			month = "March";
			break;
		case "04":
			month = "April";
			break;
		case "05":
			month = "May";
			break;
		case "06":
			month = "June";
			break;
		case "07":
			month = "July";
			break;
		case "08":
			month = "August";
			break;
		case "09":
			month = "September";
			break;
		case "10":
			month = "October";
			break;
		case "11":
			month = "November";
			break;
		case "12":
			month = "December";
			break;
	}

	document.write(month + " " + thedate[2] + ", " + thedate[0]);
}

