<!--
function subForm() {
	var email = document.getElementById('email-home').value;
	hiddenFrame.location = './send_data.php?email='+email;
	FormSwitcher("EmailFormResults", 0);
	return false;	
}

function FormSwitcher(visible, clear) {
	if(visible == "EmailForm"){
		document.getElementById('EmailForm').style.display = "block";
		document.getElementById('EmailFormResults').style.display = "none";
	}else{
		document.getElementById('go_live_email').innerHTML = document.getElementById('email-home').value;
		document.getElementById('EmailForm').style.display = "none";
		document.getElementById('EmailFormResults').style.display = "block";
	}
	if(clear > 0){
		document.getElementById('email-home').value = "";
	}
}
-->



