function submit_contact_form(theform,fld_id)
{
    var status = AjaxRequest.submit(
    	theform,
    	{
    		'url':'http://www.bodwellpines.com/contact/mailform_contact.php?ajax=1',
    		'onError':function(req) {
    				alert('Error!\nStatusText='+req.statusText+'\nContents='+req.responseText);
    		},
			'onLoading':function(req) { 
					document.getElementById(fld_id).innerHTML = "";
					document.getElementById(fld_id).innerHTML = "<div class='loadingimg'><img src='http://www.hostwithjonah.com/bodwellpines/contact/loading.gif' border='0' ></div>";
			},
      		'onSuccess':function(req) { 
				if (req.responseText != "") {
					document.getElementById(fld_id).innerHTML = "";
					document.getElementById(fld_id).innerHTML = req.responseText;
				}
			}
    	}
    );
    
	return false;
}
