function checkorderstatus() {
	var oid = document.getElementById("orderid_txt").value;
	var email = document.getElementById("email_txt").value;
	if (oid == "" || email == "") {
		alert("Please specify order id and email address for this order.");
		return;
	}
	cbaUpdateElement('orderstatus_answer', "http://www.club-covers.com/orderstatus.php?orderid="+oid+"&email="+email, "Standby...");
}