<!--
function checkit(theid){
	if (confirm("Are you sure you want to delete this item?")) {
		window.location = theid;
	    }
}
//-->


//Javascript for the top of the page
//expandCollapse
function expandCollapse() {
	for (var i=0; i<expandCollapse.arguments.length; i++) {
		var element = document.getElementById(expandCollapse.arguments[i]);
		element.style.display = (element.style.display == "none") ? "block" : "none";
	}
}

