function submitMe(){

			var txt_first = document.getElementById('txt_first');
			var txt_last = document.getElementById('txt_last');
			var txt_email = document.getElementById('txt_email');
			var txt_address = document.getElementById('txt_address');
			var txt_city = document.getElementById('txt_city');
			var txt_state = document.getElementById('txt_state');
			var txt_zip = document.getElementById('txt_zip');
			var txt_phone = document.getElementById('txt_phone');
			var txt_country = document.getElementById('txt_country');
//
			txt_first.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_last.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_email.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_address.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_city.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_state.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_zip.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_phone.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_country.style.borderColor  = "#7C7C7C #C3C3C3 #DDDDDD";
//
	var err = false;
	var response="You must complete all of the fields in order to complete the application.  Thanks\n\n";
//
			if( txt_first.value == '' ) { 
				err = true;
				txt_first.style.borderColor = "red";
				txt_first.style.borderWidth = "1px";
				response+="Please enter your first name\n";
			}
			//
			if( txt_last.value == '' ) { 
				err = true;
				txt_last.style.borderColor = "red";
				txt_last.style.borderWidth = "1px";
				response+="Please enter your last name\n";
			}
			//
			if( txt_address.value == '' ) { 
				err = true;
				txt_address.style.borderColor = "red";
				txt_address.style.borderWidth = "1px";
				response+="Please enter your address\n";

			}
			//
			if( txt_city.value == '' ) { 
				err = true;
				txt_city.style.borderColor = "red";
				txt_city.style.borderWidth = "1px";
				response+="Please enter your city\n";
			}
			//
			if( txt_state.value == '' ) { 
				err = true;
				txt_state.style.borderColor = "red";
				txt_state.style.borderWidth = "1px";
				response+="Please enter your state\n";
			}
			//
			if( txt_zip.value == '' ) { 
				err = true;
				txt_zip.style.borderColor = "red";
				txt_zip.style.borderWidth = "1px";
				response+="Please enter your zip\n";
			}
			//
			if( txt_phone.value == '' ) { 
				err = true;
				txt_phone.style.borderColor = "red";
				txt_phone.style.borderWidth = "1px";
				response+="Please enter your phone number\n";

			}
			//
			if( txt_country.value == '' ) { 
				err = true;
				txt_country.style.borderColor = "red";
				txt_country.style.borderWidth = "1px";
				response+="Please enter your Country\n";

			}
			//
			if(isValidEmail(txt_email.value) == false) { 
				err = true;
				txt_email.style.borderColor = "red";
				txt_email.style.borderWidth = "1px";
				response+="Please enter a valid email address\n";

			}
			//
	if( err != true ) { 
		document.getElementById('formDepot').submit();
	} else {
		alert(response);
	}

		}
