function nacti(url,name_fce,para) {
	var url = url+"?"+para+"&name_fce="+name_fce+"&callback=ws_results";
	var script = document.createElement("script");
	script.setAttribute('type','text/javascript');
	script.setAttribute('src',url);
	appendChild(script, "show_AS(1);");
	document.getElementById('script').appendChild(script);
}
function appendChild(node, text) {
  if (null == node.canHaveChildren || node.canHaveChildren) {
    node.appendChild(document.createTextNode(text));
  } else {
    node.text = text;
  }
}



