function confirmation(theMsg) {
	var is_confirmed = confirm(theMsg);
	if (is_confirmed) {
    	return true;
	}
	return is_confirmed;
}
