// Prompt the user with the given, and return their choice
function confirmAction(msg)
{
	var isOk=confirm(msg);
	if (isOk)
		return true;
	else
		return false;
}
