function redirect(){
	if(document.reservation.Name.value.length<1){
	alert('You must fill in your NAME');
	document.reservation.Name.focus();
	return false;
	}
	if(document.reservation.Address.value.length<1){
	alert('You must fill in your ADDRESS');
	document.reservation.Address.focus();
	return false;
	}
	if(document.reservation.City.value.length<1){
	alert('You must fill in your CITY');
	document.reservation.City.focus();
	return false;
	}
	if(document.reservation.State.selectedIndex<1){
	alert('You must select a STATE');
	document.reservation.State.focus();
	return true;
	}
	if(document.reservation.Zip.value.length<5){
	alert('You must enter your full ZIP CODE');
	document.reservation.Zip.focus();
	return false;
	}
	if(document.reservation.Mini_Size.selectedIndex<1){
	alert('You must select a MINI SIZE');
	document.reservation.Mini_Size.focus();
	return false;
	}
	if(document.reservation.Service_Requested.selectedIndex<1){
	alert('You must select a TYPE OF SERVICE');
	document.reservation.Service_Requested.focus();
	return false;
	}
	if(document.reservation.Hear.selectedIndex<1){
	alert('Please select how you heard about GoMini'+String.fromCharCode(0047)+'s');
	document.reservation.Hear.focus();
	return false;
	}
	{
	confirm('A GoMini'+String.fromCharCode(0047)+'s Representative will follow up with you within the next business day to confirm you reservation.'+' '+'Thank you for choosing GoMini'+String.fromCharCode(0047)+'s!\n\nREMEMBER: Since you reserved you Mini through this website, you will receive $20 off the first month of your rental!');
	window.location.href('mailto:info@go-minis.com?subject='+document.title+'&body=' + 'Below is the information that you entered on the Request for Reservation Form.' + String.fromCharCode(0013) + 'Please verify that the information is correct then send the email using your email' + String.fromCharCode(0047) + 's send function.' + String.fromCharCode(0013) + String.fromCharCode(0013) + 'Name: ' + document.reservation.Name.value + String.fromCharCode(0013) + 'Address: ' + document.reservation.Address.value + String.fromCharCode(0013) + 'City: ' + document.reservation.City.value + String.fromCharCode(0013) + 'State: ' + document.reservation.State.value + String.fromCharCode(0013) + 'Zip: ' + document.reservation.Zip.value +  String.fromCharCode(0013) + 'Phone: ' + document.reservation.Phone.value +  String.fromCharCode(0013) + 'Email: ' + document.reservation.Email.value + String.fromCharCode(0013) + 'Mini Size: ' + document.reservation.Mini_Size.value + String.fromCharCode(0013) + 'Service Requested: ' + document.reservation.Service_Requested.value + String.fromCharCode(0013) + 'Date of Delivery Requested: ' + document.reservation.Delivery_Date.value + String.fromCharCode(0013) + 'Length of Rental: ' + document.reservation.RentalLength.value + String.fromCharCode(0013) + 'I heard about you from: ' +  document.reservation.Hear.value + String.fromCharCode(0013) + '    ' + document.reservation.other.value+ String.fromCharCode(0013) + 'Comment/Question:' + document.reservation.comments.value)
	}
	location.reload(true)
	}
