function validateForm() {
					if (document.review.thereview.value == ""){
						alert("Please fill out the Review text box.");
						return false;
					}
					else{
						document.review.submit();
					}
				}