// JavaScript Document
// Post form validation

function redirectMe() {
	window.location = "http://www.hawkesworthappliancetesting.co.uk/"
}

function setFocusForm() {
	document.forms[0].company.focus();
}

function blankInput() {
	document.getElementById("time_other2").disabled = true;
}

function allowWrite() {
	if(document.getElementById("time3").checked == true) {
		document.getElementById("time_other2").disabled = false;
	} else {
		document.getElementById("time_other2").value="";
		document.getElementById("time_other2").disabled = true;
	}
}

function valForm() {
	var email = document.getElementById("email").value;
	if (email.indexOf("@") == -1) {
		alert(email + " is not a valid email address, please re-enter a valid email.")
		return false;
	} else {
		return true;	
	}
}

