function popup(target) {
	$('#' + target).fadeIn();
}

function popup_close(target) {
	$(target).parent().parent().fadeOut();
}