<!-- brought over from bowtecharchery.com for contact form -->
<!--
function showResponse(responseText, statusText)  { 
document.getElementById("contact-content").innerHTML = responseText;
}
function showLoading(){
document.getElementById("contact-content").innerHTML = "<div align='center'><br>Please wait<br><img src='images/ui/loadingAnimation.gif'></div>"
}
function submitForm(frm) {

var queryString = $(frm).formSerialize(); 
showLoading();
$.post('../includes/mailer.php', queryString, showResponse)
}
-->	
