// JavaScript Document
<!--

// Used in the following forms.
// requires that CCRecipient field has no value
function EmailCopy()
{
if (document.form.optEmailCopy.checked = false)
	{
		return false;
	}
else {
	if (document.form.txtEmail_OPT.value == "")
		{
		alert("Please type your email address in the field and re-check this button.");
		document.form.txtEmail_OPT.focus();
		document.form.optEmailCopy.checked = false;
		return false;
		}
	else {
		var email = document.form.txtEmail_OPT.value;
		document.form.txtRecipientCC.value = email;
		document.form.optEmailCopy.checked = true;
		}
	}
}
// -->