function pia_edit(id) {
	document.getElementById('edit_form_div_' + id).style.display = "" ;
}
function pia_cancel(id) {
	document.getElementById('edit_form_div_' + id).style.display = "none" ;
}
function pia_delete(id) {
	if ( confirm('Are you sure you want to delete this event from the Upcoming Events?') ) {
    	document.getElementById('upcoming_delete_form_' + id).submit();
    }
    return ;
}