/**
 * Scripts used on the /game/create_pirate.xhtml page.
 *
 */

/** Called by the light version applet when the website should launch getdown */
function com_threerings_createpirate_launchgetdown (getdownParams)
{
    var params = [];
    for (key in getdownParams) {
        if (getdownParams.hasOwnProperty(key)) {
            params.push("getdown_" + key + "=" + encodeURIComponent(getdownParams[key]));
        }
    }
    window.location.href = '/affiliates/launch_embed.xhtml?' + params.join('&');
}


