<%
/******************************************************************************
 * Copyright (c) 2000-2004 e-Deal
 *
 * e-Deal S.A.
 * 55 rue Brillat Savarin
 * 75013 Paris
 * France
 *
 * T: +33 (0)1 53 80 80 30
 * F: +33 (0)1 73 01 69 77
 * http://www.e-deal.com
 * 
 * La diffusion de ce code source sous quelque forme que ce soit sans
 * l'autorisation de E-DEAL est interdite.
 *
 * Vous êtes autorisés à modifier ce code source uniquement pour votre usage
 * propre et sous réserve que les mentions de copyright demeurent intactes.
 *
 * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou
 * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour
 * responsable des dommages pouvant résulter de l'utilisation de ce code
 * source.
 ******************************************************************************/
%>
<%@page session="true" import="com.edeal.frontline.*,java.util.*,com.edeal.frontline.custom.*,com.edeal.frontline.SelectionModelBean"%>
<%@ page import="com.edeal.frontline.navigation.FlRequest" %>
<%@ page import="com.edeal.frontline.SelectionManager" %>
<%@ page import="com.edeal.frontline.SelectionGenerate" %>
<%@ page import="com.edeal.frontline.controller.actions.*" %>
<%@ page import="com.edeal.frontline.FieldNotInitializedException" %>
<%@ page import="com.edeal.frontline.helper.*" %>
<%@ page import="com.edeal.frontline.helper.custom.*" %>
<%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<jsp:useBean id="Selection2" class="com.edeal.frontline.Selection2Bean" scope="request"/>
<%
	Selection2Bean obj = (Selection2Bean)request.getAttribute("Selection2");
	//String id = obj.getPopID();
	final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
	FlRequest flRequest = new FlRequest(request);
	FlContext context = flRequest.getContext();
	DataDictionary dico = context.getDataDictionary();
	String type = flRequest.getRequestParameterOrAttribute("type");
	String myid = flRequest.getRequestParameterOrAttribute("id");

	
%>
<html>
<head>
<title>E-DEAL</title>
<link rel="stylesheet" type="text/css" href="<fl:webapp/>/css/common_css.jsp">
<link rel="stylesheet" href="<fl:webapp/>/css/master_css.jsp" type="text/css">
</head>
<body class="popup_body">
<div id="object_css" style="top: 0px; left: 0px; height: 100%; width: 100%;">
<fl:bigTabs objectTitle="<%= Utils.getMessage(session, \"L30F7\", false, true, \"Test du ciblage\") %>" showFooter="false">
<table class="container" cellpadding="1">			
		<tr>
			<td colspan="2" class="titreFiche"><fl:getProperty name="Selection2" property="Se2Name" alt="<%= Utils.getMessage(session, \"L60F1\", \"Ciblage\") %>"/></td>
		</tr>
					
	 
	<%
			HashMap<String,Integer> mapObjectCounter=(HashMap<String,Integer>)flRequest.getAttribute(Selection2TestExecution._OBJECTS_COUNTER_ATTR_);
			for (String objectName:mapObjectCounter.keySet()) {
			
	 %>	<tr>
	 		
	 		<td style="text-align: left; width: 80%;" ><label><%= objectName %>(s):</label></td>	
	 		<td style="text-align: right; width: 20%; white-space: nowrap;" class="dataValue"><%= mapObjectCounter.get(objectName) %></td>
	 	</tr>
	 <% } %>
</table>
</fl:bigTabs>

<br>
<div align="center">
	<a href="#" onclick="self.close();"><img src="<fl:link url="/icons/ico/valid_green_long.gif"/>" border="0" alt="<fl:getMessage code="L61B1" alt="Fermer la fenêtre"/>" title="<fl:getMessage code="L61B1" alt="Fermer la fenêtre"/>"></a>
</div>

</div>
</body>
</html>

