// JavaScript Document// 用于网卡绑定

function GetMac()
{
	var i = 0;
	
	try
	{
		var x = new ActiveXObject("WTools.Tools");

		if(!x)
		{
			//ShowAlert();
			return '';
		}
		var macstr = x.GetMacEx();
		if(!macstr) 
			macstr = '';
		
		//alert(macstr);
		
		return macstr;
	}
	catch(e)
	{
		//ShowAlert();
		return '';
	}
}

function ShowInstallTools()
{
	document.write("<object id=\"3WTools\" classid=\"clsid:5BAED023-5383-4BF6-AA9A-289FBEAC1690\" ");
	document.write("codebase=\"/download/3wtools.cab#version=1,0,0,1\" height=\"0\" width=\"0\"></object>");
}

function ShowAlert()
{
	alert("您没有安装或没有安装成功＂游戏工具集＂，不能使用该功能，请手动下载并安装该工具！");
}

//ShowInstallTools();
