
var VanillaUtils =
{
    GetUrlFragments:function()
    {
        fullUrl = parent.document.URL;
        idx = fullUrl.indexOf('?');
        if (idx == -1)
            return '';

        params = fullUrl.substr(idx + 1);
        return params;
    },

    GetAppUrl:function()
    {
        return parent.document.URL;
    },

    getVanillaSwfRoot:function()
    {
        return vanillaSwfRoot;
    }
}