
	function g_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 g_whatsNews(tagId) {
		var url = "/whatsnews/globaltop/recent_news_inner";
		g_createScript(url, tagId);
	}
	
	g_whatsNews('recent_news_inner');
