function confirmDelete()
{
	var agree=confirm("Are you sure you want to delete this record?");
	if (agree)
		return true;
	else
		return false;
}
