function submit_form(form_id, form_action) {
	document.getElementById(form_id).action = form_action;
	document.getElementById(form_id).submit();
}
function select_price_ring(ring_id, product_id) {
	document.getElementById(ring_id).innerHTML = "$" + (product_prices["product" + product_id].toFixed(2));
}
function openPopUp(url, width, height) {
	var popup = window.open(url, null, "width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,location=no");
}
function select_show_state(prefix, country) {
	if (country == "US") {
		document.getElementById(prefix + 'USStateContainer').style.display = "";
		document.getElementById(prefix + 'NonUSStateContainer').style.display = "none";
	} else {
		document.getElementById(prefix + 'USStateContainer').style.display = "none";
		document.getElementById(prefix + 'NonUSStateContainer').style.display = "";
	}
}
function checkIsAccepted() {
	if (!document.getElementById('iAccept').checked) {
		alert("You must accept the terms");
		return false;
	}
	return true;
}