function send_entry($entry)
{
	if (confirm('Are you sure you want to send this note using SMail?') == true) {
		window.open('send.php?entry=' + $entry, 'send' + $entry, 'width=450,height=210,scrollbars=no,resizable=yes,status=no,titlebar=yes');
	}
}

function delete_entry($entry)
{
	if (confirm('Are you sure you want to delete this note?') == true) {
		location.href = 'delete.php?&entry=' + $entry;
	}
}