var ListeInfo = {
	infoContainer : "infoContainer",	
	afficheListe: function(oRes) {
		
		
	},	
	openCadre: function(titre, id, w, h, uri) {		
		return win;
	},		
	afficheSelection: function () {		
		new OpenLayers.Ajax.Request(
				"ajax.inc.php",
    		{ 	parameters: {
    				act:'infoRect'            		
    		},
      	method: 'get',
      	onComplete: function (response) {
	      		var visu = $(CMap.visu) ;
				  	var leftWin = visu.getLeft()+visu.getWidth()-310 ;  	
						var resisable = true;
				    var w = 300;
				    var h = 300;
				    this.winInfo = new StickyWinSkin({
				      skin: mySkin,
				      content : "",
				      ajaxOptions: {method: 'get', evalScripts: true},
				      title: "Information",
				      useIframeShim: false,
				      draggable: true,
				      dragHandleSelector: 'td.titleSticky',
				      resizable: resisable,
				      resizeHandleSelector: 'td.resizerSticky',
				      resizeOptions: {limit:{x:[250,1000], y:[50,800]}},
				      allowMultiple: true,
				      width: w,
				      height: h,
				      id : "infoDivCont"
				    });    
				    var oCont = this.winInfo.win.getElementsByClassName('StickySkinContent');
				    oCont[0].setStyle('height',h+'px');
					//}
					//this.winInfo.show();
					this.winInfo.setContent(response.responseText);
      	}, 
      	asynchronous: true
    	});   
	}
		
};
