function check_country()
{
    var country = document.getElementById("register_country").value;
    if (country == "International") {
        var register_country = document.getElementById("register_country_div");
        register_country.innerHTML = "<input type = \"text\" name = \"country\">";

    };
}

function check_province()
{
    var province = document.getElementById("register_province").value;
    if (province == "Other") {
        var register_province = document.getElementById("register_province_div");
        register_province.innerHTML = "<input type = \"text\" name = \"province\">";

    };
}

function go_to_product()
{
    var product_id = document.getElementById("product_select").value;
    window.location = 'http://www.theromanceshop.org/shop/product/' + product_id + '/';
}

function admin_product()
{
    var product_id = document.getElementById("jump_to").value;
    window.location = 'http://www.theromanceshop.org/admin/shop/' + product_id + '/';
}

function confirm_click(goToLink,warning) {
    if (confirm(warning)) {
        window.location = goToLink;
    };
}