MAIN_FORM = 'ContactUs';
MAIN_URL = 'contactus.ajx';

function doSendContactUsInformation() {
	try {
		clearAllMessages();
		if(typeof validate != "undefined" && validate) {
			if(!validate()) return;
		}
		var ajaxRequest = new SimpleAjaxAction(MAIN_URL, "GET");
		ajaxRequest.execute('contactus',serializeFrom($(MAIN_FORM)));
	} catch (e) {
		debugAlert(e);
	}
}
