﻿// JScript 文件
var Invoke=null;

function startAuto(entertype,gameid,roomid,username,userpwd)
{
    //alert(Invoke);
	try
	{ 
	
	
			if(Invoke==null)
			{
				Invoke = new ActiveXObject("InVoker91555Game.InvokerGame.1");
			}
			Invoke.SetParameters(entertype);
			Invoke.SetUserName(username);
			Invoke.SetUserPwd(userpwd);
			Invoke.SetAutoEnterRoom(gameid,roomid);
			Invoke.Start();

	}
	catch(e)
	{
			//alert(e.description);
			// 如果未安装 转入安装页 
			//alert("您还未安装,现转入安装页面!");  
  			window.parent.location.href("http://download.01lm.com/DDVGL_Setup_TG.exe");
  			return;
	}				
}

function startGame(){
    startAuto(1,0,0,'zhugq','zgp123');
}