function confirmDelete(msg)
{
	msg='You cannot undo this operation - are you sure you want to continue?';
	if (confirm(msg))
   {
   	return true;
   	}
   	return false;
}

