
	function c_createScript(url, tagId){
	  var script = document.createElement('script');
	  script.setAttribute('type', 'text/javascript');
	  script.setAttribute('src', url);
	  var target = document.getElementById(tagId);
	  target.appendChild(script);
	}
	
	function c_whatsNews(tagId) {
		var url = "/whatsnews/corporatetop/recent_news_inner";
		c_createScript(url, tagId);
	}
	
	c_whatsNews('recent_news_inner');
