// JavaScript Document
function openNewWindow(url) {
	history.go(0);
	window.open("http://" + url, "");
}

// Contact form stuff
function toggleHearAboutUsOther() {
	if (document.getElementById("hearaboutus").value == "other") {
		document.getElementById("hearaboutusother").disabled = false;
		document.getElementById("hearaboutusother").focus();
	} else {
		document.getElementById("hearaboutusother").disabled = true;
	}
	return true;
}

function enableHearAbourUsOther() {
	if (document.getElementById("hearaboutus").value != "other") {
		document.getElementById("hearaboutusother").value = document.getElementById("hearaboutus").value;
	}
	document.getElementById("hearaboutusother").disabled = false;
	return true;
}