/**
 * Display a confirmation box before checking a checkbox
 */
function confirmCheck(element, description)
{
	if (typeof(window.opera) != 'undefined')
		return true;
	if (element.checked)
		return confirm(description);
	// else
	return true;
}
