function addTeaserValidation() {
	if (document.getElementById("teaserForm")) {
		var teaserForm = document.getElementById("teaserForm");
		teaserForm.onsubmit = function() {
			return validate();
		}
	}
}

addLoadEvent(addTeaserValidation);