function fDelete(){
	$$('.fDelete').each(function(el){
		el.addEvent('click', function(e){
			e = new Event(e);
			if( !confirm(el.title ? el.title : 'Etes vous sûr de vouloir supprimer cet élément ?')){
				e.stop();
			}
		});
	});
}

//function fFlashMessage() {
//	new mooFlashMessage($$('.flash'));
//}

function fInit(){
	fDelete();
	//fFlashMessage();
}
window.addEvent('domready', fInit);

/* popup stardust */
var w = 825;
var h = 660;
var left = (screen.width-w)/2;
var top = (screen.height-h)/2;

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height='+h+',width='+w+',top='+ top +',left='+ left +',center=true,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}

}

