//flash game;
function index_flashgame(){
	var divId=document.getElementById('flashgame');
divId.style.left=(document.body.clientWidth-550)/2+document.body.scrollLeft;
divId.style.top=(document.body.clientHeight-1280)/2+document.body.scrollTop-100;
	$("flashgame").style.display="block";
	url='flashgame/flashgame.php';
    $("flashgame").innerHTML='<img src="/images/weatherloading.gif" />正在搜索中,请稍后...';
	startRequest(url,showflashgame);
}
function showflashgame(){
  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("flashgame").innerHTML=txt;
	  
  }	  
}
}
function topgame()
{
		url='flashgame/top.php';
    $("flashgame").innerHTML='<img src="/images/weatherloading.gif" />正在搜索中,请稍后...';
	startRequest(url,showtopgame);
}
function showtopgame(){
  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("flashgame").innerHTML=txt;
	  }	  
}
}
//当页刷新
function flashgameclose()
{
	$("flashgame").innerHTML="";
        $("flashgame").style.display="none";
}
function playflash(id)
{
	$("flashgame").innerHTML="Game  wait……";
	url='flashgame/play.php?id='+id;
	startRequest(url,playflashgame);
	
}
function playflashgame()
{
	  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("flashgame").innerHTML=txt;
	  
 }	  
}
}

//   顶起  JS功能实现
function up(id)
{
	$("gameuplabel").innerHTML="Game  wait……";
	url='flashgame/action.php?ac=up&id='+id;
	startRequest(url,upgame);	
}
function upgame()
{
	
	  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("gameuplabel").innerHTML=txt;
	  
 }	  
}
}

//   踩  JS   功能实现

function down(id)
{
	$("gamedownlabel").innerHTML="Game  wait……";
	url='flashgame/action.php?ac=down&id='+id;
	startRequest(url,downgame);	
}
function downgame()
{
	
	  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("gamedownlabel").innerHTML=txt;
	  
 }	  
}
}

//   游戏首页分页
function gettop(page)
{
		$("flashgame").innerHTML="Game  wait……";
	url='flashgame/top.php?page='+page;
	startRequest(url,gettopgame);
	
}

//    游戏首页内容控制

function gettopgame()
{
	  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("flashgame").innerHTML=txt;
	  
 }	  
}
}


//   点击类型获取内容

function getclassgame(id)
{
			$("flashgame").innerHTML="Game  wait……";
	url='flashgame/top.php?class='+id;
	startRequest(url,getclass);
	
}

function getclass()
{
	  if(xmlHttp.readyState == 4){
	  if(xmlHttp.status == 200){
	  txt=xmlHttp.responseText;
	  	     $("flashgame").innerHTML=txt;
	  
 }	  
}
}
