function trackFormQuick(form) {
	if(checkValueQuick(form)) { 
		insitePostQuick(form); 
	}
	setTimeout(function(){form.submit();},500); // increase this value if it's not tracking properly
}

function checkValueQuick(form) {

	// Add additional fields if needed or more advanced validation below here.
	if (form.Contact.value == "") { return false; }
	
	return true;
}

function insitePostQuick(form) {

	//save the action to insite
	url = "http://www.topfloortech.com/insitemetrics/uRMJ/uniformv2.php?actk=10ssxq2-48wmqs111v";
	//url += "?actk=ACTION_KEY"; //unique action key
	url += "&imReferrerField=" + escape(document.referrer);
	url += "&imEmailField=" + escape(form.email.value);
	url += "&Name=" + escape(form.Contact.value);
	url += "&Phone=" + escape(form.Phone.value);
	url += "&Message=" + escape(form.Comments.value);
	url += "&Company=" + escape(form.Company.value);
	url += "&Date Needed=" + escape(form.DateNeeded.value);
	url += "&Fax=" + escape(form.Fax.value);

	img = new Image(0,0);
 	img.src = url;
}
