﻿/**
 * tld.util.min.js
 * Developed for use on the TexasLegalDocs.com website.
 * Includes a variety of helper mehtods used throughout the website.
 *
 * Used in production. tld.util.js used in production.
 *
 * @copryright TexasLegalDocs.com
 * @developed by SohoPros Inc. of Fort Worth, TX (www.sohopros.com)
 * @author Jeremy Burton (jeremy@sohopros.com; jermbo002@gmail.com)
 * @date 10 November 2009
 */
 
var tld=window.tld||{};tld.util=function(){return{validateEmail:function(a){var b=/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;return b.test(a)}}}();