function checkFields() {
	var Email = document.Support.Email.value;
	if(Email.length == 0){
		alert("Please fill in your E-mail");
		document.Support.Email.focus();
		return false;
	}
	var First_Name = document.Support.First_Name.value;
	if(First_Name.length == 0){
		alert("Please fill in your First Name");
		document.Support.First_Name.focus();
		return false;
	}
	var Last_Name = document.Support.Last_Name.value;
	if(Last_Name.length == 0){
		alert("Please fill in your Last Name");
		document.Support.Last_Name.focus();
		return false;
	}
}