/******************************************************************************************
*******************************************************************************************/
	///<doc>
	///<summary>????????????Word??</summary>
	///<example>
	///<c>
	///SavaDataToWord("dataTable")
	///</c>
	///</example>
	///<return>???????</return>	
	///</doc>
function SavaDataToWord(DataTableID)
 {
 	var name = document.getElementById(DataTableID);
	wdApp = new ActiveXObject("WORD.APPLICATION");
	wdDoc = wdApp.Documents.Add("",0,1);
	var wdRange = wdDoc.Range(0,1);
	var sel = document.body.createTextRange();
	sel.moveToElementText(name);
	sel.select();
	sel.execCommand("Copy");
	wdRange.Paste();
	wdApp.Application.Visible = true;
 }
