
/*===============================================================================
	contact.js
	John Larson
	4/16/08
	
	All page-specific JavaScript for contact.asp

===============================================================================*/

window.addEvent('domready', function() {
	
	
});

/****************************************************************************
//	SECTION::Form Submission
*/
	
	var inquireIsSubmitted = false;
	function submitInquireForm() {
		if (!inquireIsSubmitted) {
			inquireIsSubmitted = true;
			new Ajax('contact.asp', {
				method: 'post',
				data: $('theInquireForm'),
				evalScripts: true
			}).request();
		}
		return false;
	}
	
	var applyIsSubmitted = false;
	function submitApplyForm() {
		if (!applyIsSubmitted) {
			applyIsSubmitted = true;
			new Ajax('contact.asp', {
				method: 'post',
				data: $('theApplyForm'),
				evalScripts: true
			}).request();
		}
		return false;
	}
/*
//	End SECTION::Form Submission
****************************************************************************/