$(function() {
	$("#quickContactSubmit").click(function(p_evt){				
		sendQuickContact(false);
		p_evt.preventDefault();	
	});
});


function sendQuickContact(){

	var question = document.getElementById("qcQuestion_txt").value;
	var emailAddr = document.getElementById("qcEmail_txt").value;
	
	if(!this.checkEmail(emailAddr)){
		alert("Please enter a valid email address");
		return false;
	}

	if(document.getElementById("qcEmailSubject_txt")){
		var formPost = "txtQuestion="+ question;
			formPost += "&txtEmail=" + emailAddr;
			formPost += "&txtSubject=" + document.getElementById("qcEmailSubject_txt").value;
	}
	else
	{
		var formPost = "txtQuestion="+ question;
			formPost += "&txtEmail=" + emailAddr;
	}
		
	$.ajax({
		type: "POST",
		url: "/contact/quickContact.aspx",
		data: formPost,
		dataType:"text",
		success: function(xml){
		
			$("#quickContact").addClass("quickContactResult");
			
			var response = "<h1 style='width:183px; text-align:center; margin-left:39px; padding-top:30px;'>";
				response += "Thank You<br\> For Your Inquiry"
				response += "</h1>"
				response += "<div style='width:183px; text-align:center; margin-left:39px; padding-top:15px;'>"
				response += "We will respond to you shortly.  Our normal business hours are 9am - 5pm (PST)"
				response += "</div>"

				$("#quickContact").html(response);
		},

		error:function(XMLHttpRequest, textStatus, errorThrown){
			$("#quickContact").addClass("quickContactResult");
		
			var response = "<h1 style='width:183px; text-align:center; margin-left:49px; padding-top:30px;'>";
				response += "There Was An Error With Your Request"
				response += "</h1>"
				response += "<div style='width:183px; text-align:center; margin-left:49px; padding-top:15px;'>"
				response += "Please feel free to contact us @ 877-977-0707.<br\><br\>  Our normal business hours are 9am - 5pm (PST)"
				response += "</div>"
				$("#quickContact").html(response);
		}
	});
}
