function alertPopin(titre,msg){
	template = $('popin').innerHTML;
	template = template.replace('{MESSAGE}', msg);
	template = template.replace('{TITRE}', titre);
	
	Dialog.alert(template,
        {
            className:"alert_popin",
            width:435
        }
	);
}
