/**
 * JG Rouchon 27 09 2011
 */

	    function xss_ajax(url) {
	        var script_id = null;
	        var script = document.createElement('script');
	        script.setAttribute('type', 'text/javascript');
	        script.setAttribute('src', url);
	        script.setAttribute('id', 'script_id');
	 
	        script_id = document.getElementById('script_id');
	        if(script_id){
	            document.getElementsByTagName('head')[0].removeChild(script_id);
	        }
	 
	        // Insert <script> into DOM
	        document.getElementsByTagName('head')[0].appendChild(script);
	    }
	 
	    function callback(data) {
		var json = eval(data);
		ReplaceContentInContainer('staticcontent',json.block)
	    }
	 
	   // var url = "http://cg49.mediapilote.m3.atester.fr/?eID=cg49_brandblock";
	 
	    function ReplaceContentInContainer(id,content) {
		  var container = document.getElementById(id);
		  container.innerHTML = content;
	    }
	    
	    
	   
