function del( Obj ) {
	var label = ( Obj.title ) ? Obj.title : 'Etes vous sûr de vouloir supprimer cet élément ?';
	return confirm( label );	
}

function popup( href, h, l ) {
	var hauteur = Math.round( ( screen.availHeight - h ) / 2 );
	var largeur = Math.round( ( screen.availWidth - l ) / 2 );
	window.open( href, 'product', 'toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=1,menubar=0,top='+hauteur+',left='+largeur+',width='+l+',height='+h);
	return false;	
}

function popupProduct( Obj ) {
	return popup( Obj.href, 280, 280 );
}

function bookmark() {
	if ( window.external ) {
		window.external.AddFavorite( 'http://www.alonimo.com/', 'Alonimo' );
	}
	return false;
}
