function deleteAlert()
{
	if (confirm("Deleting specified record?"))
		return true;
	else
		return false;	
}
function deleteAllAlert()
{
	if (confirm("Deleting all your history?"))
		return true;
	else
		return false;	
}

