﻿function openIdUrl(site) {
    var value = "";
    var autoClick = false;

    if (site == "openid") {
        value = "<Your Account>.myopenid.com";
    }
    else if (site == "google") {
        value = "https://www.google.com/accounts/o8/id";
        autoClick = true;
    }
    else if (site == "yahoo") {
        value = "http://yahoo.com/";
        autoClick = true;
    }
    else if (site == "steam") {
        value = "http://steamcommunity.com/openid/";
        autoClick = true;
    }

    if (value) {
        var jText = $("#openid_identifier");
        jText.val(value)
            .focus();
        if (autoClick)
            $("#btnOpenIdAction").trigger("click");
    }
}

