/*
 *Message de confirmation
 *strMsg : (string)
 *
 */
function myoffice_confirm(strMsg, strUsr) {

	if (confirm(strMsg, strUsr)) {
	
		return true;
	} else {
		
		return false;
	}
}

