function ShowLoading_news() {
	var idtarget=document.getElementById("content_right");
	if(idtarget!=null){
		idtarget.style.display="none";
	}
	scroll(0,200);
	document.getElementById("load_news_detail").innerHTML="<div align='center'><img src='images/loading.gif' width=30 align=middle></div>";
}
function ShowLoading_back_index() {
	scroll(0,200);
	document.getElementById("load_news_detail").innerHTML="<div align='center'><img src='images/loading.gif' width=30 align=middle></div>";
}
function economic_news(){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_economic_news_listing.php');
}
function economic_news_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_economic_news.php?id='+the_id);
}
function market_news(){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_market_news_listing.php');
}
function market_news_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_market_news.php?id='+the_id);
}
function coorporate_schedule(){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_coorporate_schedule_listing.php');
}
function coorporate_schedule_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_coorporate_schedule.php?id='+the_id);
}
function index_content_news(){
	ShowLoading_back_index();
	$('#load_news_detail').load('index_content_news.php');
}


function daily_research(){
	ShowLoading_news();
	$('#load_news_detail').load('aajax_daily_research_listing.php');
}
function coorporate_action(){
	ShowLoading_news();
	$('#load_news_detail').load('aajax_coorporate_action_listing.php');
}
function events(){
	ShowLoading_news();
	$('#load_news_detail').load('aajax_event_listing.php');
}
function daily_research_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_daily_research.php?id='+the_id);
}
function coorporate_action_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_coorporate_action.php?id='+the_id);
}
function event_detail(the_id){
	ShowLoading_news();
	$('#load_news_detail').load('ajax_event.php?id='+the_id);
}

/* dropdown*/
function ShowSubmenuHome(){
	document.getElementById('submenu_home').style.display = 'block';
	document.getElementById('submenu_about').style.display = 'none';
	document.getElementById('submenu_services').style.display = 'none';	
}
function ShowSubmenuAbout(){
	document.getElementById('submenu_home').style.display = 'none';
	document.getElementById('submenu_about').style.display = 'block';
	document.getElementById('submenu_services').style.display = 'none';	
}
function ShowSubmenuSevices(){
	document.getElementById('submenu_home').style.display = 'none';
	document.getElementById('submenu_about').style.display = 'none';
	document.getElementById('submenu_services').style.display = 'block';	
}
