﻿var glow;

//if (location.href.substring(0, 16) != "http://localhost")
//{
//    _uacct = "UA-556827-1";
//    urchinTracker();
//}

if (top.location != location)
{
	top.location.href = document.location.href;
}

function changeWindow(url)
{
    var frame = document.getElementById('contentFrame');
    if (frame.style.display != "inline")
    {
        document.getElementById("tblGameExplain").style.display = "none";
        frame.style.display = "inline";
    }
    showLoading();
	frame.src = url;
	current = url;
}

var current;

function LogIn()
{
    changeWindow("./Main/SubMenus/ChooseServerLogIn.aspx");
    glow.style.visibility = "visible";
    glow.style.top = "281px";
}

function SignUp(RefID, SponsoredRefID)
{
    if (RefID == -1)
    {
        if (SponsoredRefID == -1)
        {
            changeWindow("./Main/SubMenus/NewPlayer.aspx");
        }
        else
        {
            changeWindow("./Main/SubMenus/NewPlayer.aspx?SRefID=" + SponsoredRefID);
        }
    }
    else
    {
        changeWindow("./Main/SubMenus/NewPlayer.aspx?RefID=" + RefID);
    }
    
    glow.style.visibility = "visible";
    glow.style.top = "312px";
}

function Manual()
{
    changeWindow("./Main/SubMenus/Manual.aspx");
    glow.style.visibility = "visible";
    glow.style.top = "343px";
}

function News()
{
    changeWindow("./Main/SubMenus/News.htm");
    glow.style.visibility = "visible";
    glow.style.top = "374px";
}

function Faq()
{
    changeWindow("./Main/SubMenus/MoreInfo.htm");
    glow.style.visibility = "visible";
    glow.style.top = "405px";
}

function Repress()
{
    changeWindow(current);
}
