// <![CDATA[
// THE ARCHIVES DROPDOWN
function archWarp(dropdown) {
	var URL = dropdown.options[dropdown.selectedIndex].value;
	if(URL != "") {
		document.location.href=URL;
	}
}


// OUTBOX TOGGLE
function toggle(id){
	dl = "dl_" + id;
	dlElement = document.getElementById(dl);
	if (dlElement)
	{
		if(dlElement.className == "closed")
			dlElement.className = "outbox";
		else
			dlElement.className = "closed";
	}
	for (i=1; i<10; i++)
	{
		if (("item" + i) != id)
			document.getElementById("dl_item" + i).className = "closed";
	} 
}
// ]]>