
	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//記錄點閱次數(下載按鈕)
	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	function addTag(url){
		createXMLHttpRequest();
		xmlHttpReq.open("GET" , url , true);
		xmlHttpReq.onreadystatechange = handleStateChange;
		xmlHttpReq.send(null);
	}
	
	
	function handleStateChange(){
		if(xmlHttpReq.readyState == 4){
			if(xmlHttpReq.status == 200){
	
			}
		}
	
	}

