function states() {
	if(trimString(document.getElementById("id").value) == "" || trimString(document.getElementById("id").value) == "0") {
		document.getElementById("id").focus();
		alert("Please select a State.");
		return false;
	}
}

function loadStateList(id) {
	window.location = document.getElementById("base_path").value+"admin/admins/states/"+id;
}

function selectFeatured(x) {
	if(document.getElementById("tbx_featured_id_"+x).checked == true) {
		document.getElementById("tbx_available_id_"+x).checked = true;
	}
}

function statePage(url) {
	window.close();
	window.opener.location = url;
}