// JavaScript Document

// Update Name
function sendmail() {
	
	$('#mailerror').html('<img src="/images/throbber.gif">');
	$('#mailerror').show();

	$.ajax({
		type: "POST",
		url: "/rvsales/coleman/ajax/sendmail.cfm",
		cache: false,
		data: "firstname=" + $('#firstname').val() + "&" + "lastname=" + $('#lastname').val() + "&" + "emailaddress=" + $('#emailaddress').val()+ "&" + "dayphone=" + $('#dayphone').val()+ "&" + "address=" + $('#address').val()+ "&" + "city=" + $('#city').val()+ "&" + "state=" + $('#state').val()+ "&" + "zip=" + $('#zip').val(),
		success: function(msg){
			
			if ($.trim(msg).length) {
				
				$('#mailerror').html(msg);
				$('#mailerror').show();
				
				}
			
			else {
				
				$('#mailerror').html('<div class="successsubmit">Thank You!  Your information was submitted successfully.</div>');
	
				}
			
			}

	});

}
