function display_divpopup(obj,event,script)
{
	var obj_id = obj.id;
	if (typeof popup_infos[obj_id] != 'undefined') {
		var content = popup_infos[obj_id].split('||');
	} else {
		var content = new Array(' ', ' ');
	}
	domTT_activate(obj, event, 'caption', content[1], 'content', content[0], 'styleClass', 'niceTitle',
		'x', domLib_getOffsets(obj).get('right'),
		'y', domLib_getOffsets(obj).get('top'),
		'id', 'tt_' + obj_id,
		'fade', 'both', 'fadeMax', 90);
	if (typeof popup_infos[obj_id] == 'undefined') {
		fetchPage(script + '.php?id=' + obj_id, popup_info_update, obj_id);
	}
}
function popup_info_update(req,obj_id)
{
	var texte = req.responseText.split('||');
	popup_infos[obj_id] = req.responseText;
	domTT_update('tt_' + obj_id, texte[0]);
	domTT_update('tt_' + obj_id, texte[1], 'caption');
}
