function openURLinOpener(url, setFocus) {
	window.opener.location = url;
	if (setFocus) window.opener.focus();
}

function changeAutoReply() {
	if (document.eForm.HTMLSupport.checked) {
		document.eForm.AutoReply.value = ''; // HTML
	} else {
		document.eForm.AutoReply.value = ''; // Plain text
	}
}