﻿/*main scripts*/

function submitContactForm() {
	var FullName = $("#FullName").val();
	var Email = $("#Email").val();
	$("#mess_resp").html("Processing data...");
	if(Email.length > 0 && FullName.length > 0) {
		setTimeout("jqSubmitForm('default');",10000);
	} else {
		$("#mess_resp").html("Please include your name and email.");
		setTimeout("clearMessResp()",10000);
	}
}