﻿// JScript 文件
var CurrentGameTypeID = "";
var CurrentIndexTypeID = "";

function SetIndexFlashConfig(imgList,linkList,tagList)
{
	var fo=new FlashObject('../Swf/ASFlash.swf', "reFlashs", "444px", "255px", "8");
	fo.addParam("wmode","transparent");
	fo.addVariable('Images',imgList);
	fo.addVariable('Links',linkList);
	fo.addVariable('Tags',tagList);
	fo.write('reFlash');
}

function SetCoverFlashConfig(imgList,linkList,tagList)
{
	var fo=new FlashObject('swf/coverADFocus.swf', 'video', '363px', '210px', '7');
	fo.addParam("wmode","transparent");
	fo.addVariable('Images',imgList);
	fo.addVariable('Links',linkList);
	fo.addVariable('Tags',tagList);
	fo.write('coverADFocus');
}

function InitPageConfig(GameTypeID)
{
    CurrentGameTypeID = GameTypeID;
}

function ChangePageByCookies(Type)
{
    var Value = "";
    if(Type == "Game")
    { Value = CurrentGameTypeID; }
    JampToPage(Value);
}