//投資組合推薦AJAX請求
function getTzzhtj(){
		var url = "/zbh/index/tzzhtj.jsp?m="+Math.random();
		var myAjaxx = new Ajax.Updater('wntj', url, 
			{asynchronous:true,method: 'post', 
			evalScripts:true,
				onComplete:function(request){
				}
			});
}

//持倉動態AJAX請求
function getMyAssetIndex(){
		var url = "/zbh/index/index_info.jsp?m="+Math.random();
		var myAjaxx = new Ajax.Updater('myAssetIndex', url, 
			{asynchronous:true,method: 'post', 
			evalScripts:true,
				onComplete:function(request){
				}
			});
}


//通知公告AJAX請求
function getTzggIndex(){
		var url = "/zbh/index/tzgg.jsp?m="+Math.random();
		var myAjaxx = new Ajax.Updater('tzgg', url, 
			{asynchronous:true,method: 'post', 
			evalScripts:true,
				onComplete:function(request){
				}
			});
}

//頭部跑馬燈AJAX請求
function getPmd(){
		var url = "/zbh/index/pmd.jsp?m="+Math.random();
		var myAjaxx = new Ajax.Updater('pmd', url, 
			{asynchronous:true,method: 'post', 
			evalScripts:true,
				onComplete:function(request){
				}
			});
}