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
        }
	);
//	Dialog.alert(
//		msg,
//		{
//			className:"alert_popin",
//			okLabel:"OK",
//			width:435,
//			height:164
//		}
//	);
}
