// JavaScript Document
function accountInfoSubmit(pg) {
	document.main.updateInfo.value = pg;
	document.main.method = "post";
	document.main.submit();
}
function emailValueCheck() {
	if (document.main.emailAddress.value == "" && document.main.checked)	{
		document.main.emailAddress.focus();
		window.alert("You must have an e-mail address to send a confirmation to.");
	} else {
		document.main.emailOrderConfirm.value = true;
	}
}
