// JavaScript Document
	function AjaxOnlineTJ(){
			var xmlHttp;
			var Product_Num = document.getElementById("Product_Num");
			var Online_Num   = document.getElementById("Online_Num");
			if(window.ActiveXObject){
				xmlHttp = new ActiveXObject("Microsoft.xmlhttp");
			}else if(window.XMLHttpRequest){
				xmlHttp = new XMLHttpRequest();	
			}

			xmlHttp.open("GET","../Inc/AjaxTJ.asp",false);
			xmlHttp.send(null);
			msg = xmlHttp.responseText;
				if(msg==""){
					alert("Error!");
				}else{
					arr = msg.split("|");
					Product_Num.innerHTML = arr[0];
					Online_Num.innerHTML = arr[1];
					
				}
					
		}
		
//window.onload=AjaxOnlineTJ;

