function showDisclaimer(e){
	dojo.stopEvent(e);
	if(this.isValid()){
		dijit.byId("disclaimer").show();
	} else {
		this.validate();
		return false;
	}
};
function submitForm(){
	dojo.xhrGet({
		url: "handleContact.php",
		form: "contact_form",
		handleAs: "text",
		load: function(d){
			if(d==1){
				dojo.byId("main").innerHTML = 
					'<h2>Thank You!</h2>' +
					'<p>' +
						'We will respond shortly.  You should also feel free to call us ' +
						'anytime with questions.' +
					'<p>' + 
						'Best Regards,<br />' + 
						'Kevin Peterson<br />' +
						'Vice President<br />' +
						'Haddon Savings Bank<br />' +
						'(800) 442-8065<br />' +
						'(856) 547-3700' +
					'</p>';
			} else {
				dijit.byId("error_message").show();
			}
		},
		error: function(d){
			dijit.byId("error_message").show();
		}
	});
};
