<!--
function confirmation() 
{
	var answer = confirm("You are deleting this entry, this cannot be undone.  Are you sure?")
	if (answer)
	{
		return true;

	}
	else
	{
		return false;
	}
}
//-->