//	CAIXA DE ALERTA
function vxmAlert(vxmAlertMsg) {
		vxmAlertId = 'vxmAlertId';
		$('body').append('<a href="javascript:;" id="'+vxmAlertId+'"></a>');
		$('#'+vxmAlertId).m2brDialog({
				draggable: true,
				texto: vxmAlertMsg,
				tipo: 'erro',
				titulo: 'Atenção',
				botoes: {
					1: {
						label: 'Fechar',
						tipo: 'fechar'
					}
				}									   
		});
		$('#'+vxmAlertId)
			.click()
			.remove();
};
