// JavaScript Document
function modifyPostAction(postId) {
	var form = document.getElementById("mainForm");
	document.getElementById("modifyPost").value = postId;
	form.submit();
}

function deletePostAction(postId) {
	var form = document.getElementById("mainForm");
	document.getElementById("deletePost").value = postId;
	form.submit();
}

function modifyPerfAction(postId) {
	var form = document.getElementById("mainForm");
	document.getElementById("modifyPerf").value = postId;
	form.submit();
}

function deletePerfAction(postId) {
	var form = document.getElementById("mainForm");
	document.getElementById("deletePerf").value = postId;
	form.submit();
}
