function showEditProgram() {
	eval(this.req.responseText);
}

function editProgram(program,category) {
	url = "showEditProgram.php?program="+program+"&category="+category;
	sendAndLoad(url,showEditProgram);
}

function removeProgramLink(program,category,linknum) {
	var answer = confirm("Are you sure you want to remove this link?");
	if (answer){
		url = "removeProgramLink.php?program="+program+"&category="+category+"&linknum="+linknum;
		sendAndLoad(url,showEditProgram);
	}
}

function submitAssessment(form_name) {
	return true;
}

function showExtraLinks(linkSpan) {
	toplevel = "toplevel"+linkSpan;
	bottomlevel="nextlevel"+linkSpan;
	document.getElementById(toplevel).style.display = "none";
	document.getElementById(bottomlevel).style.display ="inline";
}
